function onclick_submit()
{
    document.frm1.param.value="submit";
    document.frm1.action="PackthatLogin.jsp";
    document.frm1.submit();
}


function onclick_submit_page()
{
    document.frm1.param.value="submitpage";
    document.frm1.action="PackthatLogin.jsp";
    document.frm1.submit();
}


function onKeyEntered(){
	var charCode 
        charCode = event.keyCode
        if((charCode == 13) || (charCode == 3))  { 
        document.frm1.param.value="submit";
        document.frm1.action="PackthatLogin.jsp";
        document.frm1.submit();
        }
}
