//	* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
//	*                                                       *
//	*               Script Name: o_popup.js                 *
//	* Displays larger image of sculptures in pop-up window  *
//	*            Wangming Ye 06/02/05   	            *
//	*                                                       *
//	* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 	function preload() {
		if(!document.images) return;
		var ar=new Array();
		var arguments=preload.arguments;
		for (var i=0; i<arguments.length; i++) {
		   ar[i]=new Image()
		   ar[i].src=arguments[i];
		}
	}
	var faux = null;
	var h = "";
	var w = "";
	var pic = new Image();
	function popUp(pic,h,w) {
		var URL="";
		var name="pupic";
		var options="dependent,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=150,top=40";
		faux = window.open(URL, name, 'width=' + w + ',height=' + h + ',' + options);
		var fd = faux.document;
		fd.open();
		fd.write('<html><head><title>Sculpture by Wen Xie</title><link rel="stylesheet" href="css/main.css" type="text/css"></head>');
		fd.write('<body background="images/bg.jpg" onLoad="window.focus()">');
		fd.write('<table border="0" align="center" valign="middle" cellpadding="0" cellspacing="0" width="100%" height="100%">');
		fd.write('<tr><td align="center" valign="middle"><img alt="Sculpture by Wen Xie" border="0" src="' + 'images/' + pic + '_resized.jpg"></td></tr>');
		fd.write('</table></body></html>');
		fd.close();
	}
	function gone() {
		if (faux != null && faux.open) faux.close();
	}
	window.onfocus=gone;