// Change "username" to your Username below.
// Change "password" to your Password below.
// Change the URL's to your own.
// **************************************************
function authUser(form) { 
if (form.Username.value=="gtwebinar") { 
if (form.Password.value=="wxapr08") { 
    location="webinar_directory.cfm" 
} else { 
    location="unauthorized.cfm"
    } 
} else { 
    location="unauthorized.cfm"
    } 
} 