//Andrea Rota 10/11/2005


function popup(url,width,height){
thatWindow = window.open (url, '_blank','width=' + width + ',height=' + height + ',resizable=no, left=10,top=10')
thatWindow.focus();
}

function popupscroll(url,width,height){
thatWindow = window.open (url, '_blank','width=' + width + ',height=' + height + ',resizable=no, scrollbars=yes, left=50,top=10')
thatWindow.focus();
}

function popupposix(url,width,height,top,left){
thatWindow = window.open (url, '_blank','width=' + width + ',height=' + height + ',resizable=no, left=' + left + ',top=' + top +'')
thatWindow.focus();
}


