function showpopupwin(URL,imgHeight,imgWidth) {
	var strOptions="height="+(imgHeight+30)+",width="+(imgWidth+20);
	if(document.images) {
		popup = window.open("/popup.php?imgFn="+URL,"image",strOptions);
		popup.focus();
	}
}

