<!--
function ShowHelp(url) {
	NewWindow(url,"help",500,500);
}

function NewWindow(mypage, myname, w, h, toolbar) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable,dialog=yes'
	winprops += ',toolbar=' + (toolbar==false ? 'no' : 'yes');
	//if (modal) {
	//	showModalDialog(mypage,'',winprops)
	//} else {
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	//}
}


function ViewSearch()
{

	var strURL;
	var strSearch;
	strSearch="";
	
	var txtSearch;
	
	txtSearch = document.getElementById("txt1")
	
	strSearch = txtSearch.value;
	
	var strLength;
	strLength = strSearch.length;
	
	var NewWindow;
	
	if (strLength > 0)
	{
		strURL = "do_search.asp?start=0&q=" + strSearch;
		NewWindow = window.open(strURL,"Searching_Results","height=600,WIDTH=660,scrollbars=yes,status=yes,resizable=yes");
	}	
	else
	{
		alert("You must enter something to search.");
		document.searchtext.focus();
		return;
	}

}



//-->