function OpenProductsPopup(prodid, id){
//alert(id);
//newWindow = window.open("/ProductGallery/" + id,"FormeNuoveProductGallery","width=500,height=250,scrollbars=no,left=50,top=50");
	if(document.all){
		window.open("/productgallery?prodid="+prodid+"&photoid="+id,"","fullscreen=yes,scrollbars=yes");
	}else{
		var docwidth=screen.availWidth;
		var docheight=screen.availHeight;
		newWindow = window.open("/productgallery?prodid="+prodid+"&photoid="+id,"newWindow","width="+docwidth+", height="+docheight+", scrollbars=yes, left=0, top=0");
	}

}

function truebody() {
	return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ChangeImage($image, $replace, $hover, $id){
	if($hover){
		document.getElementById($id).src=$replace
	} else {
		document.getElementById($id).src=$image
	}
}