// JavaScript Document


//	Funcion usada en el form de contacto
function resize(ELEMENTO,ALTO){
	ELEMENTO.style.height = ALTO+'px';
}

// External link JavaScript Document
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&  anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}


function popUp(IMG){
	window.open(IMG,'','menubar=0,width=410,height=310');
}





window.onload = function(){
	externalLinks();
}
