<!--  

//------------------------------------------------------------------------------
//function to check the I AGREE checkbox
//------------------------------------------------------------------------------


function ValidateCheck(){

var message="";
str=document.myform.agree.checked;

if (!(str)){
	message=message+"Please check the box that you agree to the policies stated";
}


if (message.length>0){
		alert(message);
		return false;
}
else {return true;}

}


function ValidateCheck2(){

var message="";
str=document.myform.agree.checked;

if (!(str)){
	message=message+"Please check the box that you understand that registering for Rez-Net will result in a real dollar charge against your bursar account of $45 per semester";
}


if (message.length>0){
		alert(message);
		return false;
}
else {return true;}

}

// -->