function popWindow1024(fullURL,docTitle,backColor)
{

popWindow = window.open("","popWindow","toolbar=no,status=yes,location=no,scrollbars=yes,resizable=yes,width=1015,height=680");
// put content into the popWindow

	popWindow.document.write('<HTML><HEAD><TITLE>'+ docTitle +'<\/TITLE>');

	popWindow.document.write('<link rel="StyleSheet" href="\/stylesheets\/styles.css" type="text\/css">');
	popWindow.document.write('<link rel="StyleSheet" href="\/stylesheets\/style_center.css" type="text\/css">');
	popWindow.document.write('<style type="text\/css">body{ background-color:#FFFFFF; }<\/style>');

	popWindow.document.write('<SCRIPT LANGUAGE="javascript">function updateParent(newURL)	{	opener.document.location = newURL;	window.close();	}<\/SCRIPT>');

	popWindow.document.write('<\/HEAD><BODY BGCOLOR="#'+ backColor +'" MARGINHEIGHT="0" TOPMARGIN="0">');

	popWindow.document.write('<CENTER>');

	popWindow.document.write('<table border="0"><tr><td align="center">');
	popWindow.document.write('<div class="container"><IMG SRC="'+ fullURL +'" ALT="'+ docTitle +'"><BR>');
	popWindow.document.write('<IMG SRC="\/images\/spacer.gif" WIDTH="1" HEIGHT="10"><BR><A class="blueLink" HREF="#" onClick="window.close()">Close this Window<\/A></div>');
	popWindow.document.write('<\/td><\/tr><\/table>');

	popWindow.document.write('<\/CENTER><\/BODY><\/HTML>');
	popWindow.document.close();
}

