if (document.getElementById) {
	mac = (navigator.appVersion.indexOf("Mac")>-1) ? true : false; // Mac
	ie = (document.all) ? true : false; // IE
	safari = (navigator.appVersion.indexOf("Safari")>-1) ? true : false; // Safari
	gecko = (navigator.userAgent.indexOf("Gecko/") > -1)? true : false; // Gecko
	window.onload = init;
	
}

function copyright() {
	y = new Date().getFullYear();
	document.write('1997-'+y);
}

function init() {
	document.getElementById("contact").style.visibility = "visible";
	as= document.getElementsByTagName("A");
	for(i=0; i<as.length; i++) {
		as[i].blur();
		as[i].onfocus = mBlur;
	}
	document.onmousedown = document.ondragstart = document.onselectstart = new Function("return false");
	
}

function mBlur(e) {
	if (event.srcElement || e) {
		eObj = (ie)?event.srcElement:e.target;
		while (eObj.tagName != "A") {
			eObj = eObj.parentNode;
		}
		eObj.blur();
	}
}