/* Funzione per il roll-over delle immagini */
function rollOver(name,new_img) {
	document.images[name].src = new_img
}

/* Funzione per il pop-up */
function popUpWin2(url,width,height,scroll) {

	parString= "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=0,width=" + width + ",height=" + height + ",screenX=200,screenY=100,left=200,top=100"
    window.open(url,"popUpWin",parString);
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function popUpWin(url,width,height,scroll) {

	parString= "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=0,width=" + width + ",height=" + height + ",screenX=200,screenY=100,left=200,top=100"
    window.open(url,"popUpWin",parString);
}

function popUpWinForPromo()
{
    popUpWin('/Offerte/promo.asp', 770, 340, 'no');
}

