function JumpToCategoryFromSelectNav( CategoryId )
{
    if ( !isNaN( CategoryId ) && CategoryId!='' )
    {
        location.href = '/?cmd=view_category&category_id=' + CategoryId;          
    }
}


function PopUp( location , target  , height ,  width , extra_params )
{
    if ( extra_params == '' )
    {
        extra_params = ',scrollbars=no, resizable=no';
    }
    
    return  window.open( location , target , "width=" +width + ",height=" + height + extra_params );  
}



function ShowTandC()
{
    var tandc = PopUp('/?cmd=tandc' , '_TANDC' , 650 , 800 , 'scrollbars=yes, resizable=no');
    tandc.focus();
}


function ToggleLayer( LayerId )
{
   var DivStyleStatus = document.getElementById( LayerId ).style;
   if (  DivStyleStatus.display != "block" )
   {
        DivStyleStatus.display = "block";
        return true;
   }
   else
   {
        DivStyleStatus.display = "none";
        return false;
   }
}


function ShowRemindMeForm()
{
    document.RemindMeForm.email_address.value = document.LoginForm.email_address.value;
    
    ToggleLayer('ForgotPasswordForm'); 
}


