// © 2004 Inspection Masters, EIS Company
	
	// copyright
	function copyright() {
		today=new Date();
		copyYear=today.getFullYear();
		document.write("Copyright &copy; "+ copyYear + " Inspection Masters. All Rights Reserved.");
	}


	// disable select
	function disableselect(e){
		return false
	}

	function reEnable(){
		return true
	}

	//if IE4+
	document.onselectstart=new Function ("return false")

	//if NS6
	if (window.sidebar){
		document.onmousedown=disableselect
		document.onclick=reEnable
	}
	
	// bookmark function
	function bookmark(url,title) {
		if (document.all) { window.external.AddFavorite(url,title); }
	}