//Function MM_OPENBRWINDOW (Apre una pop-up)
function MM_openBrWindow(theURL,winName,features,width,height) { //v2.0
  features=features+',left='+ ((screen.width - width -10) /3)+',top='+ ((screen.height	- height-100) /3)
  window.open(theURL,winName,features);
}

//Function APRI (Apre una pop-up a scelta)
function Apri(quale) {
 switch(quale) {
 case 1 : MM_openBrWindow('newspreview.php','preview','toolbar=no,scrollbars=yes,alwaysRaised=yes,z-lock=yes,width=581, height=200',581,200)
 		  break;
	}
}

//Function VIEWPIC (Show big version of image)
function viewPic(nome, isflash) {
    MM_openBrWindow('prv-viewpic.php?pic='+nome+'&Flash='+isflash,'foto','toolbar=no,scrollbars=no,alwaysRaised=yes,z-lock=yes,width=100,height=60', 100, 60);
}

function raiseBanner(nome, links) {
    MM_openBrWindow('raiseBanner.php?pic='+nome+'&link='+links,'foto','toolbar=no,scrollbars=no,alwaysRaised=yes,z-lock=yes,width=100,height=60', 100, 60);
}

