var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}



// SEGNALA
function segnala(){
searchWin = window.open('segnala.asp','segnala','scrollbars=yes,resizable=no,width=400,height=380,status=no,location=no,toolbar=no');
}

// LISTBOX CAMBIA URL
function opzioni(page) {
        if (page == " ") {
               alert("Selezionare un campo valido")
        } 
        else {          
        self.location=page
        } 
}

function printpage() {
	window.print();  
}
	
function closepage() {
	window.close();  
}

//POPUP
var stile = "top=0, left=0, width=400, height=380, status=no, menubar=no, toolbar=no scrollbar=no";
function Popup(apri) {
	window.open(apri, "", stile);
}
		 




