

// 
<!-- Begin
function LogIn(){
loggedin=false;
password="";
password=prompt("Please Enter Your Password","");
password=password.toLowerCase();
if (password=="thearoma") { 
loggedin=true;
window.location="espresso-movie.html";
}
if (password=="sale$") {
loggedin=true;
window.location="sales-opportunity.html";
}
if (password=="super") {
loggedin=true;
window.location="movie2.htm";
}
if (password=="just4now") {
loggedin=true;
window.location="download.html";
}
if (password=="free$") {
loggedin=true;
window.location="two-dollar.html";
}
if (password=="latte$") {
loggedin=true;
window.location="the-aromas.html";
}
if (password=="ownbusiness") {
loggedin=true;
window.location="ownbusiness.html";
}
if (password=="share$") {
loggedin=true;
window.location="one-dollar.html";
}
if (password=="profit$") {
loggedin=true;
window.location="profit-share.html";
}
if (password=="zero$") {
loggedin=true;
window.location="are-we-crazy.html";
}
if (password=="4500$") {
loggedin=true;
window.location="4500-movie.html";
}
if (password=="forums") {
loggedin=true;
window.location="http://espresso-etc.com/forum/index.php";
}
if (loggedin==false) {
alert("Invalid login!");
}
}
// End -->