function commonOnLoad(page)
{
    // set the style of all the links
	// the current page is one style, the rest are another 
	var doc_a = document.anchors;
	for (i=0; i<doc_a.length; i++)
	{
		if (doc_a(i).id == "a_" + page)
		{
			doc_a(i).style.color = "SaddleBrown";
		}
		else
		{    
			doc_a(i).style.color = "White";
		}
	}
}

function ShowPreviewWindow(imageName)
{  
	var wa = window.open('', 'AJSayerPreview', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=600' );	
	wa.document.close();


	wa.document.write('<HEAD><META http-equiv="Expires" content="Thu, 20 Sep 2001 00:00:01 GMT"/>');

// this causes a hang if it is uncommented wa.document.write('<SCRIPT language="JavaScript" Src="functions.js"></SCRIPT>');

wa.document.write('<LINK REL="stylesheet" TYPE="text/css" href="stylesheet.css"/>');

wa.document.write('<TITLE>A J Sayer Photography Preview</TITLE></HEAD>');
	wa.document.write("<body class='plainText'>");

	wa.document.write('<center><img width="350" src="images/' + imageName + '" alt="Preview image"</center>');

	wa.document.write('<br/><br/><table><tr><td>')

	wa.document.write('<a href="JavaScript:window.close(document)" title="Close this Window">Press here</a> to <b>close this window</b>.') 

	wa.document.write('</td></tr></table>')		
    	
	wa.document.write("</body>");
}

