function imgPop(imageURL, w, h) {
	var newWind = window.open('','GalleryImage', 'toolbar=no,status=no, menubar=no, width='+w+', height='+h+',left=100,top=20');
	

	var d = newWind.document;
	d.writeln('<html><head><title></title></head>');
	d.writeln('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="FFFFFF" ');
	d.writeln('onload="self.focus();" onBlur="self.close()" onClick="self.close()">');
	//d.writeln('onload="self.focus();" onBlur="self.close()">');
	d.writeln('<img src="'+imageURL+'" alt="Click Image To Close"></body></html>');
	d.close(); 
}