// JavaScript Document
	//Global variable are declared here
	var IE = document.all?true:false
	var NS4 = document.layers?true:false
	var NS6 = document.getElementById?true:false
//-----------------------------------------------
//Print Page
//-----------------------------------------------

	function PrintPage()
	{
		window.print();
	}

//-----------------------------------------------
//Add to Favourites
//-----------------------------------------------

function addToFav() 
{
	var msg
	if (IE && parseInt(navigator.appVersion) >= 4)
	{
		window.external.AddFavorite(location.href,document.title)
	}else
	{
		if(navigator.appName == "Netscape") 
			msg = "Press CTRL-D to bookmark this page.";
		else
			msg = "Your internet browser is not supported by this website. Please check browser's help to figure out how to bookmark this page."
		alert(msg);
	}
}
