
// Safe E Gift JavaScript Copyright 2009 CTVB Web Creations &  Gabitha Limited  All rights reserved



var myDate=new Date();
var myMonthName=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var TODAY = myMonthName[myDate.getMonth()] + " " + myDate.getDate() + ", " + myDate.getFullYear();

function showDate(TODAY)
{
  document.write(TODAY);
}

function startForm()
{
  var myHome = document.getElementById("Home");
  myHome.onclick = goHome;
  var myLogIn = document.getElementById("LogIn");
  myLogIn.onclick = goLogIn;
  var myAbout = document.getElementById("About");
  myAbout.onclick = goAbout;
  var myKIDZ = document.getElementById("KIDZ");
  myKIDZ.onclick = goKIDZ;
  var myPlatinum = document.getElementById("Platinum");
  myPlatinum.onclick = goPlatinum;
  var myCustomerServices = document.getElementById("CustomerServices");
  myCustomerServices.onclick = goCustomerServices;
  var mySecurityPrivacy = document.getElementById("SecurityPrivacy");
  mySecurityPrivacy.onclick = goSecurityPrivacy;
  var myAffiliates = document.getElementById("Affiliates");
  myAffiliates.onclick = goAffiliates;
  var myPressReleases = document.getElementById("PressReleases");
  myPressReleases.onclick = goPressReleases;
  var myHELP = document.getElementById("HELP");
  myHELP.onclick = goHELP;
  
  var myMyBasket = document.getElementById("MyBasket");
  myMyBasket.onclick = goMyBasket;
  var myRegisterNow = document.getElementById("RegisterNow");
  myRegisterNow.onclick = goRegisterNow;  
  var myGoShop = document.getElementById("GoShop");
  myGoShop.onclick = goGoShop;
  var myMyWishList = document.getElementById("MyWishList");
  myMyWishList.onclick = goMyWishList;
  var myHowTo = document.getElementById("HowTo");
  myHowTo.onclick = goHowTo;
  var myWhosPeeking = document.getElementById("WhosPeeking");
  myWhosPeeking.onclick = goWhosPeeking;
  var mySMS = document.getElementById("SMS");
  mySMS.onclick = goSMS;
}



function goHome()
{
  window.location="index.php";
}

function goLogIn()
{
  window.location="login.php";
}

function goAbout()
{
  window.location="about.php";
}

function goKIDZ()
{
  window.location="kidz.php";
}

function goPlatinum()
{
  window.location="platinum.php";
}

function goCustomerServices()
{
  window.location="customer_services.php";
}

function goSecurityPrivacy()
{
  window.location="security_privacy.php";
}

function goAffiliates()
{
  window.location="affiliates.php";
}

function goPressReleases()
{
  window.location="press_releases.php";
}

function goHELP()
{
  window.location="help.php";
}

function goMyBasket()
{
  window.location="my_basket.php";
}

function goRegisterNow()
{
  window.location="register_now.php";
}

function goGoShop()
{
  window.location="go_shop.php";
}

function goMyWishList()
{
  window.location="my_wish_list.php";
}

function goHowTo()
{
  window.location="how_to.php";
}

function goWhosPeeking()
{
  window.location="whos_peeking.php";
}

function goSMS()
{
  window.location="sms.php";
}