window.onload = right

function check_width()
{
	//1024 x 768
   var correctwidth=1280;
   var correctheight=960;
   if (screen.width!=correctwidth) 
   {
 		document.writeln('<br>');
		document.writeln(window.parent.document.body.style.zoom);
	   	document.body.style.zoom = (screen.width / correctwidth);
   }
}

function right(e)
{
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
		return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) 
	{
		alert("Per informazioni, scrivete al webmaster!!!");
		return false;
	}
	return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=right;
check_width();

function stampaFormato()
{
	document.write(''+screen.width+'x'+screen.height);
}

function apriFoto(aux)
{
	var finestra = window.open(aux,'_blank','width=600,height=600,toolbar=0,directories=0,menubar=0,status=0,resizable=no,location=0,scrollbars=0,copyhistory=0');
	finestra.document.bgColor='black';
	finestra.focus();	
}

function gobackone()
{
   history.go(-1);
}
