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

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

function url(page,flash) {
	document.form1.cmdp.value=page;	
	document.form1.cmdf.value=flash;	
	document.form1.submit();
}

function show(id) {
	if ($(id) != null) {
		$(id).show()
	}
}

function hide(id) {
	if ($(id) != null) {
		$(id).hide()
	}
}