// JavaScript Document

function targetBlank(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function obtenerURI() {
	var destino="http://validator.w3.org/check?uri=" + document.URL;
	window.open(destino);
}

