<!--

function formSubmit( form ) {
	var items	= getElementArray( form );
	if ( ! items )
		return false;
	trimText( form );

	form.submit();
	return true;
}

function overCheckBox( obj ) {
	obj.style.color			= '#0000ff';
	obj.style.textDecoration	= 'underline';
}

function outCheckbox( obj ) {
	obj.style.color			= '#000000';
	obj.style.textDecoration	= 'none';
}

var onloadFunc	= window.onload;
window.onload	= function() {
	onloadFunc();
	var obj	= document.getElementById( 'search_box' );
	if ( obj )
		obj.style.display	= '';
}

//-->

