
function openTerms() {
	var newwindow = window.open('terms.aspx','terms','height=485,width=420,top=25,left=25,scrollbars=yes');
	newwindow.focus();
}

function openPopUp(dest, w, h) {
	var newwindow = window.open(dest,'newwin','height='+h+',width='+w+',top=25,left=25,scrollbars=yes');
	newwindow.focus();
}

function cleanTextfield(defaultString, oTextField) {
	if (defaultString == oTextField.value) {
		oTextField.value = '';
	}
}