// JavaScript Document
/*
 * @uses:	This file is used to validate the form in the footer.php page.
 * 
 * @author: CIPL/SW/054
 * @dated:	Thursday December 20, 2007
 * 
 * @filename: footer.js
 */ 
function addToFavorites(pageName)
{
  addBookmark(pageName,window.location.href);
}
function addBookmark(title,url)
{
   if (window.sidebar)
   {
       window.sidebar.addPanel(title, url,"");
   }
   else if(document.all)
   {
 	   window.external.AddFavorite( url, title);
   }
   else if(window.opera && window.print)
   {
       return true;
   }
}


