function PopupPic(sPicURL) {
	window.open( "showPic.php?"+sPicURL, "",
	"resizable=1,HEIGHT=200,WIDTH=200");
}

function PopupPicProd() {
	var picFileName = document.getElementById("picFilename").value;
	window.open( "showImg.php?img="+picFileName, "",
	"resizable=1,HEIGHT=200,WIDTH=200");
}

function prodShowPic(picFileName,id) {
	document.getElementById("picFilename").value = picFileName;
	document.getElementById("productImage").src = "graphics/images_products/thumbnails/"+picFileName;	
	document.getElementById("prodId").value = id;
}