<!--
function newPhotoWindow_Caption(image,thisWidth,thisHeight,thisBorder,thisCaption) {
//-- This function opens the new, empty window.
//  call this script usung this format:
//  <a href="javascript:newPhotoWindow_Caption('image.jpg','width','height','border','Caption')"> </a>

	winStats='toolbar=no,location=no,directories=no,menubar=no,scrollbars=no'

	if (navigator.appName.indexOf("Microsoft")>=0) {
		winStats+=',left=' +thisBorder+ ',top=' +thisBorder+ ',width=' +thisWidth+ ',height=' +thisHeight
   	}else{
		winStats+=',screenX=' +thisBorder+ ',screenY=' +thisBorder+ ',width=' +thisWidth+ ',height=' +thisHeight
	}
	adWindow=window.open("","",winStats);
	adWindow.focus();
	adWindow.document.write("<title>Advanced Glazings Ltd. - Experience Solera - See Solera in Action</title>");
	adWindow.document.write("<body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>");
	adWindow.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='4'>");
	adWindow.document.write("<tr>");
	adWindow.document.write("<td align='left'><font face=arial size=2><a href='javascript:window.close()'>Close Window</font></a></td>");
	adWindow.document.write("<td align='right'><font face=arial size=2>Press CTRL P to print</td>");
	adWindow.document.write("</tr>");
	adWindow.document.write("</table>");
	adWindow.document.write("<p><center><img src=" + image + " border=0></center></p>");
	adWindow.document.write("<p align=right><font face=arial size=2>" + thisCaption + "</p>");
}
//-->
