function IMAGEPOP(imagesrc, winwidth, winheight){
	LeftPosition = (screen.width) ? (screen.width-winwidth)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-winheight)/2 : 0;
	var look='width='+winwidth+',height='+winheight+',top='+TopPosition+',left='+LeftPosition+','
	popwin=window.open("","",look)
	popwin.document.open()
	popwin.document.write('<html><head><style>a:link, a:active, a:vistited, a:hover{cursor:default;}</style><title>pictures &nbsp;&nbsp;&nbsp;&nbsp;</title></head><body bgcolor=white scroll=no topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0><div style="position: absolute; top:0px;left:0px;"><a href="javascript:window.close()"><img src="'+imagesrc+'" width="'+winwidth+'" height="'+winheight+'" border="0" galleryimg="no"></a></div></body></html>')
	popwin.document.close()
}