﻿function CreateBookmark(varUrl, varTitle) {
    if (varTitle == "") {
        varTitle = document.title;
    }
    if (window.sidebar) { // firefox
	    window.sidebar.addPanel(varTitle, varUrl, "");
	}
    else if (window.opera && window.print) { // opera
	    var objElement = document.createElement("a");
	    objElement.setAttribute("href", varUrl);
	    objElement.setAttribute("title", varTitle);
	    objElement.setAttribute("rel", "sidebar");
	    objElement.click();
    } 
    else if (document.all) { // ie
        window.external.AddFavorite(varUrl, varTitle);
	}
	else {
	    if (navigator.platform.indexOf("Win32") != -1) {
	        alert ("To bookmark this page, please press CTRL-D");
	    }
	    else {
	        alert ("To bookmark this page, please press Apple-D");
	    }
	}
}
