/*############################################################################*/
/*								NEWSLETTER
/*############################################################################*/
var nsInitialText = "Cadastre seu e-mail";
function nsOnFocus(Obj)
{
	if (Obj.value == nsInitialText)
		Obj.value = "";
}
function nsOnBlur(Obj)
{
	if (Obj.value == "")
		Obj.value = nsInitialText;
}
function nsInit(Obj)
{
	Obj.value = nsInitialText;
}
/*############################################################################*/
/*						BROWSER FRAME CONTROL - CHIELD
/*############################################################################*/
function callbfResize()
{
	//SET CONTROL HEIGHT
	parent.bfResize(document.body.scrollHeight);
	//SET MAIN BOTTOM BACKGROUND
	var Expr1 = /^.*(home\.php)$/i;
	var Expr2 = /^.*(noticias\.php).*$/i;
	var address = new String(window.location);
	if (address.search(Expr1) == -1 && address.search(Expr2) == -1)
		parent.SetBottomBack(1);
	else
		parent.SetBottomBack(2);
}
function initbfResize()
{
	//HIDE CONTROL
	parent.bfResize(0);
}
/*############################################################################*/
/*						BROWSER FRAME CONTROL - MAIN
/*############################################################################*/
function bfResize(Value)
{
	//FORCE FRAME MODE
	if (document.getElementById("browserFrame") == null)
	{
		window.location = "/?url=" + window.location;
		return false;
	}
	//ADJUST HEIGHT
	var minHeight = 694;
	if (Value < minHeight && Value > 0)
		Value = minHeight;
	//SET VALUE
	document.getElementById("browserFrame").height = Value;
}
function SetBottomBack(N)
{
	//SET BACKGROUND IMAGE
	if (N == 1)
		document.getElementById("bottomBack").background = "../../imagens/im_pag/P3.jpg";
	else
		document.getElementById("bottomBack").background = "../../imagens/im_pag/P3-plus.gif";
}
/*############################################################################*/
/*							DEFAULT FUNCTIONS
/*############################################################################*/
function IMGPopup(URL,W,H,TITULO)
{
	var WinPopUp = window.open("","Popup","width="+W+",height="+ (parseInt(H)+ parseInt(40))+",status=no,menubar=no");
	WinPopUp.document.write("<HTML><HEAD><link rel=\"StyleSheet\" href=\"/css/estilos.css\" type=\"text/css\"><TITLE>"+TITULO+"</TITLE></HEAD><BODY bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><img src=\""+URL+"\" width=100%><hr width=90% noshade size=1><center><a href=\"javascript:window.print();\">Imprimir</a></center></BODY></HTML>");
	WinPopUp.focus();
}
/*############################################################################*/
function abvidrojingle()
{
	var WinJclip = window.open("/movie/index.htm","audioclip","width=352,height=240");
	WinJclip.focus();
}

function popup(url, largura, altura){
	var Winpop = window.open(url,"","width="+largura+",height="+altura+"");
	Winpop.focus();
}