// JavaScript Document

//Save As Favorite
function bookmarksite(title, url)
	{
		if (document.all)
			
			window.external.AddFavorite(url, title);
		
		else if (window.sidebar)
	
			window.sidebar.addPanel(title, url, "")
	}

//Click On Image Or Anchor And Change Value In A Form ***change blah to value of anchor and name of field - like this: href="javascript:;" onclick="change_value('blah') - add id to form id="blah"
function change_value(blah)

      {

         element=document.getElementById('blah');

         element.value=blah;

      }