// JavaScript Document

function addToFavorites() { 
	try { 
		window.external.AddFavorite(document.location.href,document.title) 
	} catch(e) {}
}

function checkBrowser() {
	if (document.all) {
	} else {
		document.getElementById('bookmark').style.display = 'none'; 
	}
}

function hideMSP() {
	document.getElementById('intro').style.display = 'none';
}

if(location.href.indexOf('/twbyw/') > 0) {
	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;
	}
}
window.onload = checkBrowser;
