// JavaScript Document
function openWindow(fileName,winName,statusBar,reSize,scrollBar,winWidth,winHeight)
{
	newWin = open(fileName,winName,'toolbar=1,location=no,status=' + statusBar + ',menubar=no,left=30,top=20,screenX=30,screenY=20,scrollbars=' + scrollBar + ',resizable=' + reSize + ',width=' + winWidth + ',height=' + winHeight);
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	loc = selObj.options[selObj.selectedIndex].value
	if (loc.indexOf('+') == 0)
	{
		loc = loc.substring(1, loc.length)
		openWindow(loc,'vvfu','no',1,'no',800,540)
	}
	else if (loc.indexOf('+') > 0)
	{
		winParam = loc.substring(0, loc.indexOf('+'))
		loc = loc.substring(loc.indexOf('+') + 1, loc.length)
		eval("openWindow(loc, " + winParam + ")")
	}
	else if (loc.indexOf('-') == 0)
	{
		loc = loc.substring(1, loc.length)
		open(loc)
	}
	else
	{
		eval(targ+".location='"+loc+"'");
		if (restore) selObj.selectedIndex=0;
	}
}
function initiateSearchText()
{
	if (document.searchform.q.value == 'search') 
	{
		document.searchform.q.value = '';
	}
}

function searchSite()
{
	document.searchform.submit()
}