

window.onload = function() {
      nodeList = document.getElementsByTagName("a");
      for (var i = 0; i < nodeList.length; i++) {
        if (nodeList[i].rel == "externo") {
            nodeList[i].target = '_blank';
        }
      }
	

      if (document.getElementById("sbi")) {
        el = document.getElementById("sbi");
        el.onfocus = function () {
          if (el.value == "Buscar...")
		  	el.value = "";
        }
      }
    }
	

    function AbriVentana(documento, ancho, alto) {
    	window.open(documento,"importacion_coches_segundamano","width=" + ancho + ",height=" + alto + ",left=50,top=0,menubar=no,toolbar=no,location=no,alwaysRaised,resizable=yes,scrollbars=yes");
	}