function checkbeforesend()
{
    if ( document.getElementById("formnoTB").value == "" )
    {
        alert ( "Please fill in the 'Form No.' box." );
        document.ADMITclgnfrm.formnoTB.focus();
        return false;
    }

    if ( document.getElementById("identtTB").value == "" )
    {
        alert ( "Please fill in the 'Identity No.' box." );
        document.ADMITclgnfrm.identtTB.focus();
        return false;
    }

    if ( document.getElementById("ddTB").value == "" )
    {
        alert ( "Please fill in the 'Demand Draft' box." );
        document.ADMITclgnfrm.ddTB.focus();
        return false;
    }

    if ( document.getElementById("centerTB").value == 0 )
    {
        alert ( "Please select your CET Exam center." );
        document.ADMITclgnfrm.centerTB.focus();
        return false;
    }
    return true;
}

function BlinkFunction(){var blink=document.all.tags("blink");for(var i=0;i<blink.length;i++)blink[i].style.visibility=blink[i].style.visibility==""?"hidden":""}function Blinkonload(){if(document.all)setInterval("BlinkFunction()",500)}