
/*Change the usename,password and the page to redirect the user to to suit your own site*/
function login(form) {
if (form.user.value=="media" && form.password.value=="jose2009") {              
location="?page=mediacontent" 
}
else {
alert("Invalid Username or Password")
}
}


