// JavaScript Document

//Function to open a new window
//@param: URL - the url to open in new window
function openWin(URL)  
{
	bWindow=window.open(URL,"thewindow2","toolbar=no,width=800,height=500,status=no,scrollbars=yes,resizable=yes,menubar=no");
		
}

//Function to add our website to a user's browser favorites 
function addtofav(linkUrl,linkTitle)
{
   if (!document.all)
   {
      alert('Please hit ctrl-d to bookmark this page');
   }
   else external.AddFavorite(linkUrl,linkTitle);
   return false;
}

function jumpPage(newLoc) 
{
	newPage = newLoc.options[newLoc.selectedIndex].value

	if (newPage != "") 
	{
		window.location.href = newPage
	}
}
	