<!--
var month = new Array(
"january",
"february",
"march",
"april",
"may",
"june",
"july",
"august",
"september",
"october",
"november",
"december"
);
today = new Date();
function whereTo()
{
var magic_word = prompt("Type in Password!","Password Please");
if(magic_word == month[today.getMonth()])
{window.location = "priceFrame.htm";}
else if(magic_word == "fantastic")
{window.location = "http://users.senet.com.au/~ianmal/webs.htm";}
else
{alert("Wrong Password!")}
}
//end hiding script -->

