// ==UserScript==
// @name fincantieri - Bypass sniffer
// @author Scipio 
// @namespace http://home.wanadoo.nl/sipke.reina/opera/index.html 
// @version 1.0
// @description  Bypasses a useless message displayed by a browser
//			sniffer, and enters the site directly.
// @ujs:category site: fixes
// @ujs:published 2005-10-25 22:17
// @ujs:modified 2005-10-25 22:25
// @ujs:documentation http://userjs.org/scripts/site/fixes/fincantieri-bypass-sniffer 
// @ujs:download http://userjs.org/scripts/download/site/fixes/fincantieri-bypass-sniffer.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

if( window.location.href.match(/^http:\/\/www\.fincantieri\.(it|com)\/$/) ) {
	window.location.replace(window.location.href+'home.asp');
}