function MenuAcessoRapidoOnChange(combo) 
{
	if(combo[combo.selectedIndex].value!='') 
	{
			arr_itens = combo.value;
			if (arr_itens == "|")
			{
			void(0);
			}else{
			this.location.href=arr_itens;
			}
	}
	else
	{
	void(0);
	}
}

//ABRE JANELA PROCURE SEU CORRETOR
function abreJanelaProcure() {
	novaJanela('https://rjweb002.royalsun.com.br/html/jsp/a_procura_corretor_01.jsp','buscaCorretor','600','450','no','center');
	return true;
}

//NOVA JANELA
var janelaA=null; 
function novaJanela(url,pname,w,h,scroll,pos){ 
if(pos=="random")
{
LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
} 
if(pos=="center")
{
LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
} 
else if((pos!="center" && pos!="random") || pos==null)
{
LeftPosition=0;TopPosition=20
} 
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',toolbar=no, location=no,directories=no,status=no,menubar=no,resizable=no'; 
janelaA=window.open(url,pname,settings);} 