function mso(id,over)
{	
	var colf;
	var colb;
	if (over==1) {colf='#000000';colb='Gold';} else {colf='';colb='';};
	if (document.getElementById(id + 'a')){
	    document.getElementById(id + 'a').style.color=colf;
	    document.getElementById(id).style.backgroundColor=colb;
    }
}
function validate()
{
	if (document.getElementById("txtEmail").value == '')
	{
		alert("Please complete your email address.");
		return false;
	}
	return true;
}		