// Bookmark handler - Javascript file
//
function bookmark(){
var flag=0;
var agt=navigator.userAgent.toLowerCase();
if(agt.indexOf("msie") != -1) {
   window.external.AddFavorite(self.location, document.title);
	 flag=1;
 }
if(agt.indexOf("netscape") != -1){
    msg="Netscape User's hit CTRL+D to add a Bookmark for this site.";
    alert(msg);
	 flag=1;
 }
if(agt.indexOf("firefox") != -1) {
    msg="Firefox User's hit CTRL+D to add a Bookmark for this site.";
    alert(msg);
	 flag=1;
 }
if(agt.indexOf("opera") != -1) {
    msg="Opera User's hit CTRL+T to add a Bookmark for this site.";
    alert(msg);
	 flag=1;
 }
if (flag == 0) {
 alert("Sorry! Your browser doesn't support this function.");
 }
}

