function goURLfromPopup(nome, url, closePopup) {			

	window.self.name = nome;
	window.opener.location.href = url;
	if (closePopup) {
		self.close();
	}
	
}

function windowFocus() {
	window.focus();
}

function submitSearchForm() {
	var url = "/home/begin.do?";
		
	for(i = 0; i < document.getElementById("searchSelect").options.length; i++) {

		if(document.getElementById("searchSelect").options[i].selected
		&& document.getElementById("searchSelect").options[i].value != '') {
			url += 'departmentId=' + document.getElementById("searchSelect").options[i].value;
			url += '&';
		}
	}

	url += 'query=' + document.getElementById("searchString").value;
						
	url += '&home=blockSearch';
						
	window.location.href = url;

	document.returnValue = false;
	return;

}

function fecha(){
   if(document.layers)	   //NN4+
    {
       document.layers['floater'].visibility = "hide";
    }
    else if(document.getElementById)	  //gecko(NN6) + IE 5+
    {
        var obj = document.getElementById('floater');
        obj.style.visibility = "hidden";
    }
    else if(document.all)	// IE 4
    {
        document.all['floater'].style.visibility = "hidden";
    }
	
}