function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function checkForm(theForm) {/* get the value of the hidden "required" field: */	var req = theForm.required.value;/* split it by the commas, creating an array called "req" */	var req = req.split(",");/* for each form element, check to see if it is required and whether it's blank*//* if so, alert user and kill form submission */	var j = 0;	for(i=0; i<=theForm.elements.length-1; i++) {		for(j=0; j<=req.length-1; j++) {			if(!theForm.elements[i].value && theForm.elements[i].name == req[j]) {					alert("Fill out the "+req[j]+" field.");return false;			}		}	}/* if we got this far, we're kosher; submit form */	theForm.submit();}function check(url) {	if (confirm ("This will permanently clear the hit counter. Continue?")) {		window.location=url;	}}function jump(selector) {	window.location = selector.options[selector.selectedIndex].value}function test() {	alert('hello');}
