function addtofav(linkUrl,linkTitle){
   var linkUrl = linkUrl
   if (!document.all) {
      alert('Please hit ctrl-d to bookmark this page');
   }
   else external.AddFavorite(linkUrl,linkTitle);
}

function emailFriend(sName){
	var h, w, friendWin
	h = window.screen.availHeight 
	w = window.screen.availWidth 
	sFeatures = "height=" + h*.55 + ",width=" + w*.55 + ",resizable"
	friendWin = window.open("EmailFriend.asp?address="+sName,"",sFeatures)	
}

function ninja(url){
	var root = "http://www.as-seen-on-tv-store-1.com"
	var fullurl = root + url
	window.location.replace(fullurl);
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=213,height=185');");
}
