function popupImage(image,pname)
{
	w = window.open('', "", "location=0,scrollbars=auto");
	w_style = "position: absolute; width: 100%; height: 100%; z-index: 1; left:0px; top:0px; padding:40px;";
	i_onload = "window.resizeTo(this.width+80,this.height+100);";
	w.document.write('<div style="'+w_style+'"><img onload="'+i_onload+'" src="'+image+'" alt="'+pname+'"></div>');
}
