// all graphics and javascript by steve dimond
// visit www.Canlinks.net



function popTips() {
	top.name  = "main";
	winoptions='"toolbar=no,status=yes,location=no,resizable=yes,scrollbars=yes,menubar=no,height=360,width=480"';
	MessageWin = window.open("/display/tips.html",'details',winoptions);
	MessageWin.focus()
}
function goChek(which) {    // Set the currentURL to the selected value
	var testChek = eval("document.search."+which+".checked");
	if (testChek) {
		document.search.searchall.checked      = false;
	} else {
		document.search.searchall.checked      = true;
	}
}
function goAll() {    // Set the currentURL to the selected value
	var testChek = document.search.searchall.checked;
	if (testChek) {
		document.search.searchall.checked      = true;
		document.search.searchdetails.checked  = false;
		document.search.searchcomments.checked = false;
		document.search.searchurl.checked      = false;
		document.search.searchname.checked     = false;
	} else {
		document.search.searchall.checked      = false;
	}
}

function popTarget() {
	top.name  = "main";
	winoptions='"toolbar=no,status=yes,location=no,resizable=yes,scrollbars=yes,menubar=no,height=360,width=480"';
	MessageWin = window.open("",'details',winoptions);
	MessageWin.focus()
}
function goSite(selectBox) {    // Set the currentURL to the selected value
	cURL = selectBox.options[selectBox.selectedIndex].value
	if (cURL.indexOf("none") == -1) {
		goURL             = "/" + cURL;
		top.location.href = goURL;
	}
}
