<!-- hide from old browsers

var days = new Array();
days[0] = "Sunday";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";

var months = new Array();
months[0] = "Jan";
months[1] = "Feb";
months[2] = "Mar";
months[3] = "Apr";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "Aug";
months[8] = "Sept";
months[9] = "Oct";
months[10] = "Nov";
months[11] = "Dec";


var url="http://www.direct-college-clothing.co.uk/"
var title="Direct College Clothing"
function addfave() {
if (document.all)
window.external.AddFavorite(url,title)}

function formVal(thefields) {
	thereturn = true
	splitfields = thefields.split(",");
	for(f=0; f<(splitfields.length); f++) {
		if (document.getElementById(splitfields[f])) {
			if (document.getElementById(splitfields[f]).value=='') {
				document.getElementById(splitfields[f]).style.background="#ff0000";
				thereturn = false;
			}
		}
	}
	if (thereturn==false) { alert("Please complete all required fields"); }
	return thereturn;
}

function toggleDiv(thediv) {
	if (document.getElementById(thediv).style.display=="none") {
		document.getElementById(thediv).style.display="block";
	}else{
		document.getElementById(thediv).style.display="none";
	}
}

function doOther(theval,thediv) {
	if(theval=='Other'){
		document.getElementById(thediv).style.display="block";
	}else{
		document.getElementById(thediv).style.display="none";
	}
}

function login_validator(theForm)
{

	if(theForm.rhusername.value == "") {
		 alert("Please enter your username.");
		 theForm.rhusername.focus();
		 return(false);
	}

	if(theForm.rhpassword.value == "") {
		 alert("Please enter your password.");
		 theForm.rhpassword.focus();
		 return(false);
	}

	return (true);
}
// - end hiding -->