//js doc that controls product img popups

function popupWindow(url, name) {
  if(!name)
  	name = 'popupWindow';
  window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=500,height=500,screenX=0,screenY=0,top=0,left=0');
}

function infoWindow(url)
{
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=600,height=500,screenX=100,screenY=100,top=100,left=100');
}