/* 

FastWebServer.com Template Navigation System
Written by Michael Lawlor for FastWebserver.com
5863 Leslie St. Toronto, ON, M2H 1J8
416 385 2422

*/


function quickSearchJump(selObj)
{
	if(selObj.options[selObj.selectedIndex].value != "")
	{
		eval("window.location='" + selObj.options[selObj.selectedIndex].value +"'");
		selObj.selectedIndex=0;
	}
}

function buildTableRow(thisName, thisLink)
{
	var retString = new String("<tr><td height=\"20\" onMouseover=\"style.backgroundColor='#88AACC'; style.cursor='hand';\" onMouseout=\"style.backgroundColor='';\" onClick=\"location.href='");
	retString += thisLink;
	retString += "'\"><div align=\"right\" class=\"menulines\"><a href=\"";
	retString += thisLink;
	retString += "\">";
	retString += thisName;
	retString += "&nbsp; <img src=\""+ imgdir +"/white_arrow.gif\" width=\"3\" height=\"6\" border=\"0\" align=\"absmiddle\">&nbsp;&nbsp;</a></div></td></tr>";
	
	return retString;
}