function CreateWindow(url, largura, altura,Scroll,nome)
//Cria uma popup centrada
{
	esq = (screen.availWidth - largura ) / 2 ;
	cim  = (screen.availHeight - altura) / 2 -10 ;	
	janela = window.open(url,nome,"toolbar=no,width="+ largura + ",height=" + altura + ",left=" + esq + ",top=" + cim + ",scrollbars="+ Scroll +",directories=no,status=no,resize=no,menubar=no")
}  


//function changeObjectHeight(objID, w, h){
//    //try{
//        //alert()
//        if(window.navigator.appName == "Netscape"){
//            //window.document.getElementById(objID).style.width = "100%";
//            window.document.getElementById('ctl00_HeaderExtras_panelMenu').style.height =  Number(h) + 10 +"px";
//        }
//        else{
//            //document.getElementById(objID).style.height = w;
//            document.getElementById('ctl00_HeaderExtras_panelMenu').style.height = Number(h)+10;
//        }
//        
//        //document.getElementById(objID).style.height = Number(h)+20;
//        
//        //window.document.getElementById('ctl00_Menu_panelMenu').style.height =  h+"px";
//        //alert("batata REI" + objID)
//    
//    //}
//    //catch(e){
//        //do nothing
//    //}
//    
//}




function changeObjectHeight(objID, w, h){
  if(window.navigator.appName == "Netscape"){
   window.document.getElementById('ctl00_HeaderExtras_panelMenu').style.height =  Number(h) + 10 +"px";
   if(document[objID]){
    // Chrome
    document[objID].style.height=Number(h) + 150+"px" ;
   }else{
    // Mozilla
    document.all(objID).style.height=Number(h) + 150 +"px" ;
   }
  }else{
   document.getElementById('ctl00_HeaderExtras_panelMenu').style.height = Number(h)+10;
   document.all(objID).style.height=Number(h) + 10;
  }     
}


function setText(objID,texto){
    //alert('ok')
    if (document.getElementById(objID).value==texto)
        document.getElementById(objID).value='';
    else if (document.getElementById(objID).value=='')
        document.getElementById(objID).value=texto;
}

function showPopupInviteFriend(lg){
    CreateWindow('/inviteafriend.aspx?lg=' + lg, 400, 320,'No','Invite')
}

function showPopupNewsletter(lg){
    CreateWindow('/newsletter.aspx?lg=' + lg, 380, 260,'No','Newsletter')   
}

function showPopupYourOpinion(lg){
    CreateWindow('/youropinion.aspx?lg=' + lg, 400, 320,'No','Opinion')
}

function showPopupBudget(lg){
    CreateWindow('/budget.aspx?lg=' + lg, 400, 400,'No','Budget')
}

function openClose(obj,k,path,height){


     
    if (document.getElementById(obj).style.visibility=='hidden'){
        document.getElementById(obj).style.height= height + "px";
        document.getElementById(obj).style.visibility='visible';
        //k.src=path + '/close.gif';
        }
    else{
        //k.src=path + '/expand.gif';
        document.getElementById(obj).style.height="0px";
        document.getElementById(obj).style.visibility='hidden';
        
        }

}
