/* ======================================================================

 JScript Source File

 NAME	 : client_functions.js
 AUTHOR	 : SIEB
 DATE	 : 24-10-2003
 COMMENT : Funções comuns utilizadas nas páginas do site da CASAIS

========================================================================= */
function resize_parent()
{
	if(window.frameElement!=null)
	{
		ifel=window.parent.document.getElementById(window.name);
		ifel.style.height=window.document.body.scrollHeight;
		ifel.style.width=window.document.body.scrollWidth;
	}
	//parent.iframeHeight();
	return(true);
}

function abre_janela(URL,name,features)
{
	window.open(URL,name,features);
}

function abre_URL(URL)
{
	if(window.frameElement==null)
		window.location=URL;
	else
		paren.abre_URL(URL);

}

function abre_opcao(URL)
{
	if(window.frameElement==null)
	{
		ifrm=document.getElementById("ifrm_center");
		ifrm.src=URL;
	}
	else
		window.parent.abre_opcao(URL)
		
}
