if (top.location != self.location) {
	top.location = self.location 
}

function popUnder ( PAGE, WIDTH, HEIGHT ) {
	var winString = "screenX=80,screenY=80,directories=0,location=1,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0" ;
	newWindow = window.open( PAGE, "popUnder1" , winString) ;
	newWindow.blur();
}

function earthDayCountdown() {
	ShowIt = true;
	thisCookie = document.cookie.split("; ");
	for (i=0; i < thisCookie.length; i++) {
		if ("beenHere" == thisCookie[i].split("=")[0]) {
			ShowIt = false;
		}
	}
	
	if (ShowIt == true) {
		openWindow('/area/earth-day/countDown.pl','300','300');
	}
	
	expireDate = new Date;
	expireDate.setTime(expireDate.getTime() + (60 * 60 * 1000));
	document.cookie = "beenHere=true; expires=" + expireDate.toGMTString() +"; path=/; domain=.e-cards.com;";
}

function doEarthDayStuff (ShowIt) {
	
	if (ShowIt != "true") {
		return 0;
	}
	
	//popUnder('http://www.cafeshops.com/cp/store.aspx?s=ecards.37849','300','300');
	earthDayCountdown();
	
}

function openWindow ( PAGE, WIDTH, HEIGHT ) {
  var winString = "height=" + HEIGHT + ",width=" + WIDTH + ",screenX=50,screenY=50,directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0" ;
  newWindow = window.open( PAGE, "newwin" , winString) ;
  newWindow.focus();
}
	
