/*confirm email*/
function verifyForm(form) {
	var name = document.getElementById("GRCategory2");
	var email = document.getElementById("GRCategory3");
	/*var last = document.getElementById("GRCustom0");
	var verify = document.getElementById("GRCustom1");
	var learn = document.getElementById("GRCustom2");*/
	if (name.value == "") {
		alert("Please enter your First Name");
		name.focus();
		return false;
	} else if (!verifyEmail(email.value)) {
		alert("Please enter a valid Email Address");
		email.focus();
		return false;
	} /*else if (last.value == "") {
		alert("Please enter your Last Name");
		last.focus();
		return false;
	} else if (verify.value == "") {
		alert("Please confirm Your Email Address");
		verify.focus();
		return false;
	} else if (learn.value == "") {
		alert("Please let us know how you found our site");
		learn.focus();
		return false;
	} 
	*/	return true;
}

function verifyEmail(email) {
	//Just don't ask.
	return /^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c\x00-\x7f)*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c\x00-\x7f)*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c\x00-\x7f)*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c\x00-\x7f)*\x5d))*$/.test(email);
}






/*
Add-to-favorites Script
Created by David Gardner (toolmandav@geocities.com)
No warranty of any kind comes with this script!
Permission granted to Dynamic Drive (http://dynamicdrive.com) 
to post and feature this script on their DHTML archive 
*/

//configure the two variables below to match yoursite's own info
var bookmarkurl="http://www.automatedpredatormarketingsystem.com"
var bookmarktitle="Predator POWER Team"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}







/*controls lower status bar*/

var speed = 100; //Pause between letters (milliseconds)
var pause = 1000; //Pause between messages (milliseconds)
var ar = new Array();


//Messages. You can have as many as you want.
ar[0] = "Don't wait! Join the #1 Team TODAY and make this your best year ever!";
ar[1] = "DO NOT let this opportunity pass you by! Nothing can compare to this PROFITABLE system!";
ar[2] = "Learn from an average person, just like you, how you can do this same thing, starting TODAY!";
ar[3] = "NO selling. NO calling. NO explaining. NO closing. Just send people to your new website!";
ar[4] = "The Internet's FIRST 'Do Almost NOTHING Business'";
ar[5] = "The PROOF is all here, laid out right in front of you. It's all real and IT WORKS!!!";
ar[6] = "Be our next TESTIMONIAL. I can't wait to show you what you have been missing all this time!";
ar[7] = "Team Leaders make ALL the sales for you. Now that's what I call AUTOMATED!"
ar[8] = "You get paid $1,000 or $3,000 IMMEDIATELY! Even BEFORE the Company makes a dime.";
ar[9] = "Truly a Hands-FREE Home Based Business. 98% FULLY AUTOMATED!";
ar[10] = "Build RESIDUAL INCOME in 8 diffrent ways."
//For more, simply increase the number, for example:
//ar[4] = "Next message";


//Don't change anything beyond this point


var currentMessage = 0;
var timerID = null;
var offset = 0;


function stopBanner() {
if (timerID)
clearTimeout(timerID);
timerID = false;
}


function startBanner() {
if (!timerID)
showBanner();
}


function showBanner() {
var text = ar[currentMessage];
if (offset < text.length) {
if (text.charAt(offset) == " ");
offset++;
var partialMessage = text.substring(0, offset + 1);
window.defaultStatus = partialMessage;
offset++;
timerID = setTimeout("showBanner()", speed);
} else {
offset = 0;
currentMessage++;
if (currentMessage == ar.length)
currentMessage = 0;
timerID = setTimeout("showBanner()", pause);
}
}
//-->




/*disable right click*/

function disableRightClick(e)
{
  var message = "You CAN NOT right click this Page.";
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}
disableRightClick();



/*this is for rotating headlines*/
var rotators = new Array();

function xtraRotator(a,d,id) {
	this.array = a;
	this.delay = (d?d:1700);
	this.inc = 0;
	this.id = rotators.length;
	this.iden = (id ? id : 'rotator' + this.id);
	rotators[this.id] = this;
	this.start = function() {
		if (!this.interval)
			this.interval = window.setInterval("rotators["+this.id+"].rotate()",this.delay);
	}
	this.stop = function() {
		if (this.interval)
			window.clearInterval(this.interval);
		delete this.interval;
	}
	this.rotate = function() {
		document.getElementById(this.iden).innerHTML = this.array[this.inc++];
		if (this.inc == this.array.length)
			this.inc = 0;
	}
	
	document.write("<div id='"+this.iden+"'>"+this.array[this.inc++]+"</div>");
	this.start();
}



/*to change date*/ 
var months = new Array("January", "February", "March", "April",   "May", "June", "July", "August", "September", "October", "November",   "December"); 
var now = new Date(); 
var ending = "th"; 
switch(now.getDate()) { 
case 1: 
case 21: 
case 31: 
ending = "st"; 
break; 
case 2: 
case 22: 
ending = "nd"; 
break; 
case 3: 
case 23: 
ending = "rd"; 
} 
now = months[now.getMonth()] + " " + now.getDate () + ending; 













