// JavaScript Document
 
function addBookmark2(){
	var bookmark_url="http://127.0.0.1/index.php";
 	var text_description="Notore Chemical Industries Ltd.";
 
	if (navigator.appName=="Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4 && navigator.platform.indexOf("Win") > -1){
		window.external.AddFavorite(bookmark_url,text_description); 
	}
	else{
		alert("For PC users, press the Control (Ctrl) and \"D\" keys on your keyboard to bookmark this site. For Mac users, press the Command (Apple) and \"D\" keys on your keyboard.");
	}
 
}
 

