
var aWin,d = null;
function openWin(URL) {
	aWin = window.open(URL,"picView","width=200,height=200,resizable=1");
	d = aWin.document;
	d.open("text/html");
	d.write('<html><body><p><img src="'+URL+'" onLoad="resizeTo(document.images[0].width+35,document.images[0].height+60);"></p></body></html>');
	d.title = 'System Scanning Ltd. - 互太掃描系統有限公司';
	d.close();

	aWin.focus();
}