// JavaScript Document
//popupvar popUpWin=0;
/*function popUpWindow(URLStr, left, top, width, height)
{
	alert('popup');
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'RDS', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}*/


function popUp(paginaDaAprire, larghezza, altezza)
{
	window.open(paginaDaAprire, 'RDS',  'toolbar=0, menubar=0, scrollbar=1, resizable=0,width=530, height = 400' );
}