// **************************************************
// Permission granted to use and/or redistribute this
// script, so long as this notice remains intact.
// http://www.TheWebHut.com / design@thewebhut.com
// **************************************************
// Change "guest" to your desired Username below.
// Change "enter" to your desired Password below.
// You can also change the URL's to reflect your own.
// **************************************************
function authUser(form) { 
if (form.Username.value=="djt-back") { 
if (form.Password.value=="pr2201jt") { 
    location="presse-bereich.html" 
} else { 
    location="unauthorized.html"
    } 
} else { 
    location="unauthorized.html"
    } 
} 