<!--
function popup(url,nome,w,h,pscroll){
	if (pscroll == '') vscroll = 'auto';
	else vscroll = pscroll;
	LeftPosition = (screen.availWidth-w)/2;
	TopPosition = (screen.availHeight-h)/2;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+vscroll+',status=0,resize=0';
	win = window.open(url,nome,settings);
	win.focus();
}

function popuprichiedi(url) {
  indirizzo=url;
  nomefinestra = 'windemo';
  larghezza = screen.availWidth;
//  alert('larghezza='+larghezza);
  altezza = screen.availHeight;
//  alert('altezza='+altezza);
  sinistra = 0;
  if (larghezza >= 800) {
  	delta = (larghezza - 800)/2;
//	alert(delta);
	sinistra = delta + 222;
  }
  opzioni = 'scrollbars=no,resizable=no,width=500,height=300,left='+sinistra+',top=105'
  nw=window.open(indirizzo,nomefinestra,opzioni);
  nw.focus();
}

//-->

