// JavaScript Document
function centerPICWindow(theURL,titlename) {
//織夢平台 http://www.e-dreamer.idv.tw
//分享是成長的開始
	img = new Image();
	img.src = theURL;
	edfeatures='toolbar=no,location=no,status=no,menubar=no';
    newWindow=window.open(''+theURL+'','','width=10,height=10,top=10,left=10,features=' + edfeatures+ '');
    newWindow.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=big5"><title>'+titlename+'</title></head><body><scr'+'ipt laguage=javascript>function showcenterwin(){var imgURL = "'+theURL+'", img = new Image();img.src = imgURL;var i=0;	if (navigator.appName == "Netscape") i=40;	window.resizeTo(img.width +30, img.height+60-i);	window.moveTo((screen.width-img.width)/2, (screen.height-img.height)/2);}</scr'+'ipt><img src="'+theURL+'" onClick="window.close();"  onload="showcenterwin();self.focus();"></body></html>');
	newWindow.focus();
}
