// (C) Netlogic, 2003
window.onload = function() {
	GeckoALTfixer();
}

function Open(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();
	return false;
}

function printIt() {
	window.print() ;
	return false;
}

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