// JavaScript Document

function check_terms(checkbx)
{
	if(checkbx.checked == false)
	{
		alert("Pleack Check the Terms and Conditions!");
		return false;
	}
}

function password_check(pwd1,pwd2)
{
	if(pwd1.value==pwd2.value)
	{
		alert("Retype password not same!");
		return false;
	}
}