/*
jQuery(document).ready(function() {
	var accesRapide		= document.getElementById("accesrapid");
	var liferaySearch	= document.forms["_77_fm"];
	accesRapide.action	= liferaySearch.action;

	var searchField = document.getElementById('adii-search-field');
	var searchBtn = document.getElementById('adii-search-button');

	searchField.onkeydown = function(e) {
		if (!e) var e = window.event;
		if(event.keyCode == 13) goSearch();
	}

	searchBtn.onclick = function() {
		goSearch();
	}
});

function goSearch(input) {
	document.getElementById("accesrapid").submit();
}*/

function dropdownMenuHandler(element) {
	var optionValue = element.options[element.selectedIndex].value;
	eval("var optionStructure = "+optionValue+";");
	if( optionStructure.target == 'self' ) {
		window.location.replace(optionStructure.url);
	} else {
		window.open(optionStructure.url,'_blank','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	}
}
