var windowX = (screen.width/2)-(800/2)
var windowY = (screen.height/2)-(600/2)
function finestra(variable,url,nom) {

      variable=window.open(url,nom,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0,width=520,height=390")	   
	variable.focus()
    variable.moveTo(windowX,windowY)
}
function pan(variable,url,nom) {

      variable=window.open(url,nom,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0,width=720,height=300")	   
	variable.focus()
    variable.moveTo(windowX,windowY)
}

