/*
* 
* BrowserTools v 2.0 (15/11/2007)
* BrowserTools es (c) 2005 Marcos Raldes Amaya - marcosraldes@hotmail.com
* NetGroup Bolivia - Diseño & Desarrollo Web de Avanzada
* 
*/
strBrowser = "browserApp="+navigator.appName.toLowerCase() +" "+ navigator.userAgent.toLowerCase();

function abrirNuevaVentana(URLtoOpen, windowName, windowFeatures) {
	nuevaVentana=window.open(URLtoOpen, windowName, windowFeatures);
	nuevaVentana.focus();
}

function ld(theurl) {
	document.getElementById("url").href = theurl;
	document.getElementById("url").click();
}

function ldSelf(theurl) {
	document.getElementById("urlSelf").href = theurl;
	document.getElementById("urlSelf").click();
}
