// JavaScript Document
//generic function 
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  popUpWin = open(URLStr, 'Immagini', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  if(1 > 0)
  {
	  setTimeout('popUpWin.focus();',250);
  }
}
// Function to pop SlideShow and focus the window
function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
  newWindow=window.open(URLtoOpen, windowName, windowFeatures);
  setTimeout('newWindow.focus();',250);
}
