function frameGoto(frame,asp) {
	document.getElementById(frame).contentWindow.document.location=asp;
	document.getElementById(frame).submit();
}

function changeHeightASP (iAlto) {
	parent.document.getElementById("myiframe").height=iAlto;
}

function resizeIframe(sub) {
	//alert("funcion resizeIframe");
	var iframeCentral=parent.document.getElementById("myiframe");
	iframeCentral.height="100%";
	var alturaPagina=iframeCentral.contentWindow.document.body.scrollHeight;
	//parent.iframeCentral.style.height=alturaPagina;		
	changeHeightASP(alturaPagina);
}

function goto(url) {
	//alert(url);
	parent.document.getElementById("myiframe").contentWindow.document.location=url;
}
