<!--
/**  ############# OPENWINDOW #############################
     Apre una finestra di browser con i seguenti parametri:
     str - la stringa con la URL da aprire
     w - la width in pixel
     h - la height in pixel  */

function openWindow(str,w,h) {
    par='width='+w+','+'height='+h+',scrollbars=no,resizable=no,menubar=no,status=no,top=8,left=70'
    window.open(str,"eventi",par);
}

/*  ###################################################### */

/**  ############# CONTROLLO LOGIN #############################
     Apre una finestra di browser con i seguenti parametri:
     str - la stringa con la URL da aprire
     w - la width in pixel
     h - la height in pixel  */

function ControlloLogin(username, pwd){
	if (username=="" || pwd==""){
		alert ("Devi immettere userid e pwd \n per poter collegarti!");
		return false;
	}else{
		return true;
	}
}
/*  ###################################################### */

function cambiaimmv(numero){
		rfsh = new Date() ; rfsh = "?"+rfsh.getTime()
		document.images["immagine"].src = "/images/vip/vip"+numero+".jpg"+rfsh
}

-->