// JavaScript Document
function GeneralSearchingKeyPress(e, f){
	if (e.keyCode == 13) {
    	GeneralSearching(f);
  	}
}

function GeneralSearching(f){
	var url = null;
	var currentUrl = window.location.href;
	if (currentUrl.indexOf("terravista")!=-1) {
  		url = 'http://busca.terravista.pt/search?destino=web&filtrofamiliar=&xargs=&estat=&origen=home&buscar=' + escape(f.q.value) + '&first=&pesquise=pesquisar';
	} else {
    	if (f.SO[0].checked) {
			url = 'http://busca.ya.com/search?origen='+escape(f.o.value)+'&buscar='+escape(f.q.value)+'&destino=web';
		} else if (f.SO[1].checked) {
			url = 'http://busca.ya.com/search?origen='+escape(f.o.value)+'&buscar='+escape(f.q.value)+'&destino=imagen';
    	} else if (f.SO[2].checked) {
			url = 'http://busca.ya.com/search?origen='+escape(f.o.value)+'&buscar='+escape(f.q.value)+'&destino=news';
		}
  	}
	if (url!=null) {
    	window.location.href = url;
  	}
  	return false;
}

var o='';
var host = location.hostname;
var siteBar = "";

if (host.indexOf('foros')>=0){siteBar="<h2><a href='http://foros.ya.com'>Foros.ya.com</a>";o='social';} else
if (host.indexOf('traductor')>=0){siteBar="<h2><a href='http://traductor.ya.com'>Traductor.ya.com</a><a href='http://www.reverso.com/index-es.html?lang=es'><span><img src='http://common.ya.com/common/html/servicios/img/logo_reverso.gif' width='72' height='20' /></span></a></h2>";o='header';} else
if (host.indexOf('cartelera')>=0){siteBar="<h2><a href='http://cartelera.ya.com'>Cartelera.ya.com</a></h2>";o='header';} else
if (host.indexOf('inforchat')>=0){siteBar="<h2><a href='http://inforchat.ya.com'>Inforchat.ya.com</a></h2>";o='social';} else
if (host.indexOf('hispachat')>=0){siteBar="<h2><a href='http://hispachat.ya.com'>Hispachat.ya.com</a></h2>";o='home';} else
if (host.indexOf('paginas-amarillas')>=0){siteBar="<h2><a href='http://paginas-amarillas.ya.com'>P&aacute;ginas-amarillas.ya.com</a></h2>";o='home';} else
if (host.indexOf('paginas-blancas')>=0){siteBar="<h2><a href='http://paginas-blancas.ya.com'>P&aacute;ginas-blancas.ya.com</a></h2>";o='home';}

document.write("<div class='top'>");
document.write("<div id='barra'>");
document.write("<h1><a href='http://www.ya.com'><span>Ya.com</span></a></h1>");
document.write(siteBar);
if (host.indexOf('foros')>=0){
  document.write("<span>");
  ShowIdentification();
  document.write("</span></h2>");
}
document.write("</div>");
document.write("</div>");
document.write("<div id='buscador'>");
document.write("<form method='get' name='FORMGenericSearchBox1' onSubmit='return false'>");
//document.write("<form name='F_SEARCH' action='/search/search.php'>");
document.write("<input type='hidden' name='o'  value='"+o+"'/>");
document.write("<fieldset class='text_img'>");
document.write("<input name='q' onkeypress='return GeneralSearchingKeyPress(event, this.form)' type='text' class='text_area'/>");
//document.write("<input name='' type='text' class='text_area' />");
document.write("</fieldset>");
document.write("<img src='http://common.ya.com/common/html/servicios/img/google.gif' alt='img_google'/>");
document.write("<fieldset class='checks'>");
document.write("<input type='radio' id='SO' name='SO' value='0' checked/>");
document.write("<label>Web</label>");
document.write("<input type='radio' id='SO' name='SO' value='1' />");
document.write("<label>Im&aacute;genes</label>");
document.write("<input type='radio' id='SO' name='SO' value='2' />");
document.write("<label>Noticias</label>");
document.write("</fieldset>");
document.write("<fieldset class='area_boton'>");
document.write("<input name='button' type='button' class='boton' onclick='GeneralSearching(this.form)' value='Buscar'/>");
//document.write("<input name='' type='button' class='boton' value='Buscar' />");
document.write("</fieldset>");
document.write("</form>");
document.write("</div>");