﻿// JavaScript File


function CreateBookmarkLink() { 
title = document.title;
url = document.URL;

if (window.sidebar) { 
// Mozilla Firefox Bookmark 

window.sidebar.addPanel(title, url,""); 
} else if( window.external ) { 
// IE Favorite 

window.external.AddFavorite( url, title); 
} 
else if(window.opera && window.print) { 
// Opera Hotlist 
return true; } 
}

function SetHomePage(a)
{
    url = document.URL;
    document.getElementById(a).href=url;
    document.getElementById(a).style.behavior='url(#default#homepage)';
    document.getElementById(a).setHomePage(url);
   
}