function start(){
	var rq = new Requester("GET");
}

function testLogin(xdoc){
	alert(getNodeValue(xdoc));
}

function iframeGetSize(){
	var height = $('Container').offsetHeight;
	
	window.parent.iframeResize("cPrincipal", height);
}

function getSize(){
	return $('Container').offsetHeight;
}

function $(n){
	return document.getElementById(n);
}

function getNodeValue(n) {
	if (n && n.nodeType == 3) {
		return n.nodeValue;
	} else if(n) {
		return n.firstChild ? n.firstChild.nodeValue : "";
	} else {
		return "";
	}
}

function legales(){
	var legal = window.open("http://loaded.vg/site/web/contents/legales.php", "Legales", "width=500,height=400,menubar=0,resizable=0,status=0,toolbar=0,scrollbars=1");
}
