<!-- Hide script from old browsers

function popup_window(ImageName,IWidth, IHeight)      
{ 
	var imagepath = "images/" + ImageName;
	newwindow = window.open (imagepath,"mywindow","scrollbars=1,width=" + IWidth + ",height=" + IHeight);  
	newwindow.document.write('<html><head><title></title>');
	newwindow.document.write('<link rel="stylesheet" href="css/popup.css" type="text/css">')
	newwindow.document.write('</head>');	
	newwindow.document.write('<body>');
	newwindow.document.write('<table><tr><td><img src="')
	newwindow.document.write(imagepath);
	newwindow.document.write('"></td></tr>');
	newwindow.document.write('<tr><td><font face ="arial" color="#ffffff"><center>');
	newwindow.document.write('<a href="Javascript:window.close()"><font face ="arial" color="#ffffff">Close Window</font></a></center></font></td></tr>');
	newwindow.document.write('</table>');
	newwindow.document.write('<javascript:location.reload()></body></html>');
} 

// end hiding script from old browsers -->

