<!--
// esto se va en 2011 A

function version() { return "11.11.19"; }

function getLevelStr(iLevel) {
	
	var i, sLevel, s;

	sLevel = "";
		
	for (i=0; i < iLevel; i++) sLevel = sLevel + "../";
	
	return sLevel
}

function PayPal() {
	
	var s;
		
	s = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">';
	s += '<input type="hidden" name="cmd" value="_s-xclick">';
	s += '<input type="hidden" name="hosted_button_id" value="GRT5ZVWF5XZMY">';
	s += '<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" name="submit" alt="PayPal - The safer, easier way to pay online!">';
	s += '<img alt="" src="https://www.paypal.com/es_XC/i/scr/pixel.gif" width="1" height="1">';
	s += '</form>';

	document.write(s);
}

// Z

function openw(url, w, h) {
	
	var woptions;

	woptions = "height=" + h + ", width=" + w + ", resizable=1" + ", toolbar=0"; 
	w = window.open(url, "" , woptions); 
}


function openws(url, w, h) {
	
	var woptions;

	woptions = "height=" + h + ", width=" + w + ", resizable=1" + ", scrollbars=1" + ", toolbar=0"; 
	w = window.open(url, "" , woptions); 
}

// -->

