var obj_in


function agreesubmit(el)
{
obj_in=el
	if (document.all||document.getElementById)
	{
	for (i=0;i<obj_in.form.length;i++)
		{
		var tempobj=obj_in.form.elements[i]
		if(tempobj.type.toLowerCase()=="submit")
				tempobj.disabled =! obj_in.checked
		}
	}
}

function defaultagree(el)
	{
	if (el.agreecheck.disabled == false)
	{
	alert("You must accept the terms before submission")
	return false
	}
	}