// **************************************************
// Change "guest" to your desired Username below.
// Change "enter" to your desired Password below.
// **************************************************
function authUser(form) { 
if (form.Username.value=="guest") { 
if (form.Password.value=="enter") { 
    location="pricing.php" 
} else { 
    location="denied.php"
    } 
} else { 
    location="denied.php"
    } 
} 