<!--
var now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var day = now.getDate()
var month = now.getMonth()+1
var year = now.getFullYear()
var clock = hours+":"+minutes+","+month+"/"+day+"/"+year

var winwidth= window.screen.width
var winheight= window.screen.height
var screenresolution= window.screen.width+" x "+window.screen.height

function GetDate()
{   return (clock);  }
function GetReferrer()
{   return (document.referrer);  }
function GetScrRes()
{   return (screenresolution); }

//--------------------------------------------------------------------
//****************E-MAIL VALIDATION***********************************
//--------------------------------------------------------------------

function isEmail(string) {

   if (!string) return false;
   var iChars = "*|,\"<:>[]{}`\';()&$#%";

   for (var i = 0; i < string.length; i++) {
      if (iChars.indexOf(string.charAt(i)) != -1)
         return false;
   }
   return true;
}
function isProper(string) {

   if (!string) return false;
   if (string.length<3) return false;
   var iChars = "*|,\"<:>[]{}`\';()@&$#%";

   for (var i = 0; i < string.length; i++) {
      if (iChars.indexOf(string.charAt(i)) != -1)
         return false;
   }
   return true;
}
function isReady(form) {
    if (isEmail(form.email.value) == false) {
        alert("Please enter a complete email address in the form: yourname@yourdomain.com");
        form.email.focus();
        return false;
    }
    if (isProper(form.name.value) == false) {
	alert("Please enter a valid username at least 3 characters in length.");
        form.name.focus();
        return false;
    }
    return true;
}



function isEmail(string) {
    if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
        return true;
    else
        return false;
}

function isProper(string) {
   if (string.length<3) return false;
   if (string.search(/^\w+( \w+)?$/) != -1)
        return true;
   else
        return false;
}


// -->