
function showpic(ThisPicture,ThisClass,hline,stitle)
{
	var strSubtitle="";
	var jstr="javascript:history.back()";
	var strHeadline="";
	var strStylesheets="";
	
	if (hline==null||hline=="undefined"||hline=="") 
	{
		strHeadline="<div class='pictitle'>Rahula</div>"
	}
	else
	{
		strHeadline="<div class='pictitle'>" + hline + "</div>";
	}

	if (stitle==null||stitle=="undefined"||stitle=="")
	{
		strSubtitle="<div class='picsubtitle'>Click on the picture to return</div>";
	}
	else
	{
		strSubtitle="<div class='picsubtitle'>" + stitle + "</div>";
	}

	if (document.styleSheets.length==0)
	{
		strStylesheets="";
	} 
	else
	{
		for (var i=0; i<(document.styleSheets.length); i++)
		{
			if (navigator.appname == "Microsoft Internet Explorer") 
			{
  			strStylesheets=strStylesheets+'<link rel="stylesheet" type="text/css" href="' + document.styleSheets(i).href + '" />';
			}
			else
			{
  			strStylesheets=strStylesheets+'<link rel="stylesheet" type="text/css" href="' + document.styleSheets[i].href + '" />';
			}
		}
	}
  document.open();
  document.writeln ("<html>");
	document.writeln ("<head>");
	document.writeln ("<title>Rahula</title>");
	document.writeln (strStylesheets);
	document.writeln ("<link rel='shortcut icon' href='http://www.philipresheph.com/rahula/favicon.ico' type='image/x-icon' />");
	document.writeln ("</head>");
	document.writeln ("<body>");
	document.writeln ("<div class='centred'>");
	document.writeln (strHeadline);
	document.writeln (strSubtitle);
	document.writeln ("<div><a href='" + jstr + "'><img class='" + ThisClass + "' src='http://www.philipresheph.com/rahula/" + ThisPicture + ".jpg' ");
	document.writeln ("alt='Click to return' /></a></div>");
	document.writeln ("</div>");
	document.writeln ("</body></html>");
	document.close();
}


