function ScrollDown(do_scroll,amt)
{
    if (do_scroll != 0)
    	window.scrollBy(0,amt);
}

/*********************************************************************
var strSearchString = '';

function SetSearchString(name)
{
   	document.SearchForm[name].value = strSearchString;
}

var objText;

function DoChange() {
   var objHTML;

   if (objText)
   {
	   var strTest = prompt("Enter new text you want to appear", objText.data);

       objText.data = strTest;
   }
   else
   {
       objHTML = document.createElement('P');
       objHTML.setAttribute('NAME', 'txtTest');
       objHTML.setAttribute('ID', 'txtTest');
       document.body.appendChild(objHTML);
       var strTest = prompt("Enter any text you want to appear", "whoops!");
       objText = document.createTextNode(strTest);
       objHTML.appendChild(objText);
       delete objHTML;
   }
}
	Last change: RR 11/07/05 2:41:43 PM
*********************************************************************/

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Prakash -->
<!-- Web Site:  http://www20.brinkster.com/mahathmaonline/bookmark.html -->
<!-- Begin
function AddBookmark(s_url,s_title)
{
	if (document.all)
		window.external.AddFavorite(s_url,s_title);
	else
		alert("Cannot add bookmark automatically.  Use your browser's menus to add the bookmark.");
}

