<!--
function URLEncode ( String )
{
	re = / /g
	String = String.replace ( re, "+" );
	re = /\&/g
	String = String.replace ( re, "%26" );
	re = /\?/g
	String = String.replace ( re, "%3F" );
	re = /=/g
	String = String.replace ( re, "%3D" );
	re = /\+/g
	String = String.replace ( re, "%2B" );
	re = /\\/g
	String = String.replace ( re, "%5C" );
	re = /\//g
	String = String.replace ( re, "%2F" );

	return String;
}

function doSearch ( form, Mod )
{
	if ( form.keyword.value == '' )
	{
		alert ( 'No Keyword Specified!' );
		form.keyword.focus ();
		return false;
	}	
	window.location = "/" + Mod + "-query/" + URLEncode ( form.keyword.value ) + ".html";
	return false;
}
//-->