// JavaScript Document

	function QuickLinksJump(form)
	{
		var link_item = form.quick_links.selectedIndex;
		choice = form.quick_links.options[link_item].value;
		if (choice!="x")
			top.location.href=choice;
	};
	function SiteSearchText_onClick(form)
	{
		var item = form.q;
		if(item.value == "Powered by Google")
		{
			item.value = "";
		}
	};
	function SiteSearchText_onBlur(form)
	{
		var item = form.q;
		if(item.value == "")
		{
			item.value = "Powered by Google";
		}
	};
	function swapImage(imageID, imagePath) 
	{
		var imgID;
		imgID = document.getElementById(imageID);
		imgID.src = imagePath;
	}
	function SizeTextarea(txtObjId, txtClass, txtWidth, txtHeight)
	{
		var obj = document.getElementById(txtObjId);
		obj.className=txtClass;
		obj.style.width=txtWidth;
		obj.style.height=txtHeight;
	}
