		function checkBrowser(){
			this.ver=navigator.appVersion
			this.dom=document.getElementById?1:0
			this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
			this.ie4=(document.all && !this.dom)?1:0;
			this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
			this.ns4=(document.layers && !this.dom)?1:0;
			this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
			return this
		}
		bw=new checkBrowser()
	function clearText(div, nest) {
		obj = 'document.aspnetForm._ctl0_ContactForm_'+div+'.value';
		if (div=='txtName') {
			if (eval(obj)=="Name") {
				document.aspnetForm._ctl0_ContactForm_txtName.value='';
			}
		}
		else if (div=='txtCompany') {
			if (eval(obj)=="Company Name") {
				document.aspnetForm._ctl0_ContactForm_txtCompany.value='';
			}
		
		}
		else if (div=='txtEmail') {
			if (eval(obj)=="Email") {
				document.aspnetForm._ctl0_ContactForm_txtEmail.value='';
			}
		
		}
		else if (div=='txtPhone') {
			if (eval(obj)=="Phone") {
				document.aspnetForm._ctl0_ContactForm_txtPhone.value='';
			}
		
		}
		else if (div=='txtComments') {
			if (eval(obj)=="Comments") {
				document.aspnetForm._ctl0_ContactForm_txtComments.value='';
			}
		
		}
	}
	function resumeText(div) {
		obj = 'document.aspnetForm._ctl0_ContactForm_'+div+'.value';
		if (div=='txtName') {
			if (eval(obj)=="") {
				document.aspnetForm._ctl0_ContactForm_txtName.value='Name';
			}
		}
		else if (div=='txtCompany') {
			if (eval(obj)=="") {
				document.aspnetForm._ctl0_ContactForm_txtCompany.value='Company Name';
			}
		}
		else if (div=='txtEmail') {
			if (eval(obj)=="") {
				document.aspnetForm._ctl0_ContactForm_txtEmail.value='Email';
			}
		}
		else if (div=='txtPhone') {
			if (eval(obj)=="") {
				document.aspnetForm._ctl0_ContactForm_txtPhone.value='Phone';
			}
		}
		else if (div=='txtComments') {
			if (eval(obj)=="") {
				document.aspnetForm._ctl0_ContactForm_txtComments.value='Comments';
			}
		}
	}
	
	function rollover(imgID) {
  // get the image object we're referring to
  var thisimg = document.getElementById(imgID);
  thisimg.src = thisimg.src.replace(/_50(\.[a-z0-9]+)$/i,'$1');
}
function rollout(imgID) {
  // get the image object we're referring to
  var thisimg = document.getElementById(imgID);
  thisimg.src = thisimg.src.replace(/(\.[a-z0-9]+)$/i,'_50$1');
}