

function popUpWin(imgPath,imgWidth,imgHeight,imgTitle){
 newWindow= window.open('', 'newWindow', 'width='+imgWidth+',height='+imgHeight+',left=10,top=10,scrolling=no');
 with (newWindow.document) {
	open();
	write(
	 '<html><head>'+
	 '<title>'+imgTitle+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onblur="();">'+
	 '<a href="#" onClick="javascript:self.close();"><img src="'+ imgPath+ '" width="'+imgWidth+'" height="'+imgHeight+'" border="0"></a>'+
	 '</body></html>'
	);
	close();
 }
newWindow.focus();
} 

