//Homelink script - sets home page and bookmarks site
//Code by Olan Suddeth, Red Dragon Computing Concepts, 2004
//http://www.rdinn.com/web

//edit this to reflect the home page that you wish to set
homeurl="http://infowaremall.com";

//edit this to reflect the title of the bookmarked page
booktitle="Search The INFOWAREMALL.COM -- ClickBank Digital Marketplace For The Best Products And Services Available Online!";

//don't edit anything below this line!

function sethome(){
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) { 

document.body.style.behavior='url(#default#homepage)';
   document.body.setHomePage(homeurl);

	}


}//end function

function setbook(){
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) { 


window.external.AddFavorite(homeurl,booktitle);
	}


}//end function



function showother(){
if ((navigator.appName != "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) { 

	if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 5)) {
	
	alert("To set your homepage in Netscape and Firefox, drag the link to your home icon.  Bookmark using CTRL-D.");
	 } 
	else if (document.layers){
	
	alert("Use your internet properties to set your home page, and make sure to add us to your bookmarks!");
	}
	
	
	

	} 
	

}//end function


