function myvoid() {}
 
function popup(url,wname,w,h,opzioni) {
	if(typeof(wname) !== 'undefined' && wname != null) {
		if(wname.length==0) wname='Popup';
	} else wname='Popup';

	if(typeof(w) !== 'undefined' && w != null) {
		if(w.length==0) w=screen.width/2;
	} else w=screen.width/2;
	
	if(typeof(h) !== 'undefined' && h != null) {
		if(h.length==0) h=screen.height/2;
	} else h=screen.height/2;
 
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
 
	if(typeof(opzioni) !== 'undefined' && opzioni != null) {
		if (opzioni.length==0) {
			opzioni='height='+h+',width='+w+',top='+wint+',left='+winl+',resizable=yes,scrollbars=yes,status=yes';
		} else {
			opzioni='height='+h+',width='+w+',top='+wint+',left='+winl+','+opzioni;
		}
	} else opzioni='height='+h+',width='+w+',top='+wint+',left='+winl+',resizable=yes,scrollbars=yes,status=yes';

	wpopup=window.open(url,wname,opzioni);
	wpopup.opener=self;
	wpopup.focus();
}



