function chat(){
	urlchat = 'http://www.chatgospel.com.br/cg/';
	// urlchat = '/bp2/';
	WinName = 'chatgospel';
	// WinCfg = 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=600,height=410';
	WinCfg = '';
	WinCfg = '';
	window.open(urlchat,WinName,WinCfg);
}
function jumpSelect(selObj){
  eval("location.href='"+selObj.options[selObj.selectedIndex].value+"'");
}
function JumpMenu(selObj){
	SObj = selObj.options[selObj.selectedIndex].value;
	if(SObj == '#chat'){
		chat();
	} else if(SObj.substr(0, 7) == "http://"){
		window.open(SObj);
	} else{
		top.location.href='/redir.php?url='+SObj;
	}
}

document.title = "NetGospel.com.br";

function returnObjById( id ) 
{ 
    if (document.getElementById) 
        var returnVar = document.getElementById(id); 
    else if (document.all) 
        var returnVar = document.all[id]; 
    else if (document.layers) 
        var returnVar = document.layers[id]; 
    return returnVar; 
}