function framerror(){
					return true
					}
window.onerror=framerror

setTimeout ("testPage()", 3000);

	function testPage() {

			if (self.parent.frames.length != 0)
							{
							var robos = parent.frames[0].location.href;
							var test = robos.indexOf("enu");
				
								if ((test < 0 ) && (navigator.appName == "Microsoft Internet Explorer")) 
										{
										alert ('Questa pagina fa parte del sito Mateweb.it');
										window.parent.location.href = "http://www.matewb.it/default.htm";
       									}
								
								else if ((test < 0 ) && (navigator.appName != "Microsoft Internet Explorer")) 
								
								 		{
									 alert ('Questa pagina fa parte del sito Mateweb.it');
										window.parent.location.href = "http://www.matewb.it/default.htm";
       									}
								
							 	return ;
							  }
							 
							 
							
	 		else if (navigator.appName == "Microsoft Internet Explorer")
						{
						alert ('Questa pagina fa parte del sito Mateweb.it');
			   	   		window.top.location.href = "http://www.matewb.it/default.htm";
      	   				}	
				else 	{		
						alert ('Questa pagina fa parte del sito Mateweb.it');
			   	   		window.top.location.href = "http://www.matewb.it/default.htm";
						}}

			
