 window.onload = alCargar;

function alCargar()
{
	if(location.search.indexOf('&imprimir')!=-1)
		print();
	
	externalLinks();
}

function imprimirJS(url)
{
	ventana = window.open(url+ '&imprimir','ventana','resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no');
}

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";
 }
}

