// (C) Netlogic, 2003
OnLoadHitchs  = function () {};

window.onload = function() {
	GeckoALTfixer();
	ValidateForms();
}

function Open(url, w, h) {
	w = window.open(url,'popUp','toolbar=no,status=no,location=no,menubar=no,resizable=no,scrollbars=yes,width='+w+',height='+h);
	w.focus();
}
function OpenResizable(url, w, h) {
	w = window.open(url,'popUp','toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h);
	w.focus();
}
function printIt() {
	var NS = (navigator.appName == "Netscape");
	var VERSION = parseInt(navigator.appVersion);

	if (VERSION > 3) {
		if (NS) {
			window.print() ;

		} else {
			var WebBrowser = '<OBJECT ID="WebBrowser1" width="0" height="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
			document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
			WebBrowser1.ExecWB(6, 2);
			WebBrowser1.outerHTML = "";
		}
	}
}

function GeckoALTfixer() {
	if (navigator.product && navigator.product == 'Gecko') {
		var i, images = document.getElementsByTagName('IMG');
		for (i = 0; i < images.length; i++) {
			with (images[i]) {
				if (getAttribute('alt')) setAttribute('title', getAttribute('alt'));
			}
		}
	}
}