// JavaScript Document
leftPos=0
if (screen) {
	leftPos = screen.width-600
	}

function zoomImage(imagen){
	objectimg=eval("document.images."+imagen+".src");
	url=  "zoomimage.php?image="+objectimg.substring(0,objectimg.length - 4) + "_g.jpg";
	window.open(url, 'newWin', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width=500,height=369,left='+leftPos+',top=200')
}


