
function form_focus()
{
document.form1.login.focus()
}

function agree_terms()
{
var cont = document.form1.agree.status

if (cont==false)
{
document.form1.action=""
alert('Agreement of Terms and Conditions \n               is Compulsory')
}
else
{
document.form1.action="bboard_create_user_data_dbase.asp"
//document.form1.submit()
}

}

function sig_preview()
{
document.all.sig_preview.innerHTML = document.form1.sig.value
}
