// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'scrollbar=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,width=450,height=500,left=30, top=30,screenX=30,screenY=30');
}



function popUpWindowExt(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'scrollbar=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,width=700,height=500,left=30, top=30,screenX=30,screenY=30');
}




function showPhoto(url, descr, width, heigth)
{
	document.getElementById('picture').src = url;
	//document.getElementById('picture').alt = descr;
	//document.getElementById('picture').title = descr;
	document.testo=descr;	

}


//function contatta(email, address){
//	alert (address + "?email=" + email);
//	window.opener.location = address + "?reseller=" + email ;
//	window.close ();
//}

function contatta(id, url){
//    alert (url + "?id=" + id);
    window.opener.location = url + "?retailer=" + id ;
    window.close ();
}