window.addEvent( 'domready', function() {
	init();
});

function init( )
{
	$('SearchText').addEvent( 'focus', function() {
		$('SearchText').value = '';
	} );
	initRedirect( 'acces_direct' );
}


function initRedirect( id ) {
	if( $(id) ) {
		$(id).addEvent('change', function() {
			redirect( $(id) );
		});
	}
}

function redirect( sel ) {
	var opt = sel.options[sel.selectedIndex];
	document.location.href = opt.value;
}
