// JavaScript Document

function addToFavorites() { 
	if (window.external) { 
		window.external.AddFavorite(document.location.href,document.title) 
	} else {
		//alert("Sorry! Your browser doesn't support this function."); 
	}
}

function checkBrowser() {
	if (!window.external) { 
		document.getElementById('bookmark').style.visibility = 'hidden'; 
	}
}


var dObj1 = new Date();
var dObj2 = changeToDate('01/01/2010');

// show links and interstitial if today is before 04/09/2006
if (days_between(dObj1,dObj2) > 0) {
	// check if the ad was viewed
	if(getCookie('skipAd') != 'true') {
		// check if user continued to main page wanting to see it again
		if(getCookie('adViewed') != 'true') {
			window.location.href = 'intro.htm';
		}
	}
} else {
	window.onload = hideMSP;
}

function hideMSP() {
	document.getElementById('intro').style.display = 'none';
}

window.onload = checkBrowser;