function _actop(id){
	_desop(opact)
	var obop=document.getElementById('op'+id)		
	var obc=document.getElementById('cop'+id)
	var qn=document.getElementById('q'+id)
	if(obop){obop.className="oplnkact";}
	if(obc){
		obc.style.display='block';
		if (id==1){
			document.getElementById('sbi').focus();
		}else{
			qn.focus();	
		}
	}
	opact=id
	return false;
}
function _desop(id){
	var obop=document.getElementById('op'+id)		
	var obc=document.getElementById('cop'+id)		
	if(obop)obop.className="oplnk"
	if(obc)obc.style.display='none';
	return false;
}
function _search(id){
	var qn=document.getElementById('q'+id);
	if (qn.value==''){qn.focus(); return false;}
	if (id==2){window.open('http://es.search.yahoo.com/search?ei=UTF-8&fr=sfp&p='+qn.value, '','');}
	if (id==3){window.open('http://es.wikipedia.org/wiki/'+qn.value, '','');}
	if (id==4){window.open('http://search.live.com/results.aspx?go.x=20&go.y=12&form=QBRE&q='+qn.value, '','');}
	if (id==5){window.open('http://www.unicodisco.com/index.php?q='+qn.value, '','');}
	if (id==6){window.open('http://www.fulltono.com/buscar.aspx?q='+qn.value, '','');}
	if (id==7){window.open('http://news.google.com/news?hl=es&tab=wn&ned=es&q='+qn.value, '','');}
	if (id==8){window.open('http://www.hi5.com/friend/processHeaderNameSearch.do?searchText='+qn.value, '','');}
}