function SwapImage(imgN,imgU)
{
   if(document.images)document.images[imgN].src=imgU;
}

function navbackground(obj,seton)
{
	if (seton)
	{
	//	obj.style.backgroundColor = '#FFFFFF'
	//	obj.style.backgroundImage = 'url(images/menubarlitsqsh.png)'
	}
	else
	{
	//	obj.style.backgroundColor =  '#e8e8e8'
	//	obj.style.backgroundImage = 'url(images/menubarshade.png)'
	}
}

function navbackgroundswitch(obj,seton)
{
	if (seton)
	{
	//	obj.style.backgroundColor = '#004080'
	//	obj.style.backgroundImage = 'url(images/menubuttonshade.png)'
	}
	else
	{
	//	obj.style.backgroundColor = '#808080'
	//	obj.style.backgroundImage = 'none'
	}
}

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function invokeInlineSearch ()
{
	var obj = document.getElementById('inlineSearch');
	searchVal = obj.value;
	if (searchVal !="")
	{
		createCookie('pulsonix.com.inlinesearch','searchVal',7);
		document.location = 'search.asp?scope=&mode=allwords&search=' + searchVal;
	}
}

function LoadDoc(docname)
{
	window.open(docname,'','scrollbars=no,menubar=no,height=650,width=640,resizable=yes,toolbar=no,location=no,status=no,directories=no');
}
