function verify() {
	window.open('https://www.paymark.co.nz/dart/darthttp.dll?etsl&tn=verify&merchantid=850789', 'verify', 'scrollbars=yes, width=620, height=400');
}

function switchText(object, baseText, eventName) {
	if (eventName == "blur") {
		if (object.value == "") {
			object.value = baseText;
		}
	}
	else {
		if (object.value == baseText) {
			object.value = "";
		}
	}
}

// Validator script

function Validator(theForm)
{
	if (theForm.keyword.value == "Type any keyword") {
		alert("You can not leave the search field blank. Please enter a keyword. You can search on a product, disease, ingredient, vitamin, mineral, condition etc.");
		theForm.keyword.focus();
		return (false);
	}
	if (theForm.keyword.value.length < 3) {
		alert("Please enter more than 3 letters.");
		theForm.keyword.focus();
		return (false);
	}
	if (theForm.keyword.value.length > 20) {
		alert("Please do not enter more than 20 letters.");
		theForm.keyword.focus();
		return (false);
	}

return (true)
}
