/***********************************************
* Show link
***********************************************/

<!--

function showlink(url) {
    	opener.location.href = url;
	window.close();
}

//-->


/***********************************************
* Form Validation
***********************************************/

<!--

function verify() {
	if (document.thisform.keywords.value=="") {
		alert("Please enter a search term!")
		return (false);
	}
	else {
		return (true);
	}
}

//-->

//
function CheckForm(){
	with(document.contactform){
	document.contactform.Q1.value = "How did you find out about Fidelitone?";
	
	// Question 1.
		if(SearchE.checked == false &&
		   WordOM.checked == false &&
		   PrintA.checked == false &&
		   NewsPMA.checked == false &&
		   Other1.value.length==0)
		   {alert('Please check one of the boxes or enter something in other.');escape();Other1.focus();return false;}
		}
	return true;
}
//-->

/***********************************************
* Open in New Window
***********************************************/

<!--

function Start(page) {
	OpenWin = this.open(page, "CtrlWindow", "width=790,height=400,resizable=yes,scrollbars=yes,left=100,top=200,screenX=0,screenY=100");
	}

//-->

<!--

function Open(page) {
	OpenWin = this.open(page, "CtrlWindow", "width=550,height=190,resizable=yes,scrollbars=yes,left=50,top=50,screenX=0,screenY=100");
	}

//-->

<!--

function New(page) {
	OpenWin = this.open(page, "CtrlWindow", "width=650,height=200,resizable=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,copyhistory=yes,left=50,top=50,screenX=0,screenY=100");
	}

//-->