function fwLoadMenus() {
  if (window.fw_menu_0) return;
  window.fw_menu_0 = new Menu("root",81,19,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#ffffff","#cccce6","#ffcc99");
  fw_menu_0.addMenuItem("consulta","location='tela.html'");
  fw_menu_0.addMenuItem("consulta","location='tela.html'");
  fw_menu_0.addMenuItem("consulta","location='tela.html'");
   fw_menu_0.bgImageUp="fwmenu2_81x19_up.gif";
   fw_menu_0.bgImageOver="fwmenu2_81x19_over.gif";
   fw_menu_0.hideOnMouseOut=true;
  window.fw_menu_1 = new Menu("root",88,19,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#ffffff","#cccce6","#ffcc99");
  fw_menu_1.addMenuItem("cadastrar","location='tela.html'");
  fw_menu_1.addMenuItem("cadastrar","location='tela.html'");
   fw_menu_1.bgImageUp="fwmenu1_88x19_up.gif";
   fw_menu_1.bgImageOver="fwmenu1_88x19_over.gif";
   fw_menu_1.hideOnMouseOut=true;

  fw_menu_1.writeMenus();
} // fwLoadMenus()

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_nbGroup(event, grpName) { //v6.0
  var i,img,nbArr,args=MM_nbGroup.arguments;
  if (event == "init" && args.length > 2) {
    if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
      img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
      nbArr[nbArr.length] = img;
      for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = args[i+1];
        nbArr[nbArr.length] = img;
    } }
  } else if (event == "over") {
    document.MM_nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
      nbArr[nbArr.length] = img;
    }
  } else if (event == "out" ) {
    for (i=0; i < document.MM_nbOver.length; i++) {
      img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
  } else if (event == "down") {
    nbArr = document[grpName];
    if (nbArr)
      for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
      nbArr[nbArr.length] = img;
    } }
}

function verificaQtdeItemSelecionado(p_select){
	var temItemSelecionado=0;
	
	for (j=0; j < p_select.options.length; j++){
		if(p_select.options[j].selected){
			temItemSelecionado++;
		}
	}
	return temItemSelecionado;
}

function enviaMensagem(p_msg){
	if(p_msg!=''){
		alert(p_msg);
	} 
}

function verificaSelecaoId(p_select, p_id){
	var temItemSelecionado=false;
	
	for (j=0; j < p_select.options.length; j++){
		if(p_select.options[j].selected && p_select.options[j].id != p_id ){
			temItemSelecionado=true;
			return temItemSelecionado;
		}
	}
	return temItemSelecionado;
}

function moverSelecao(p_select){
	for (j=0; j < p_select.options.length; j++){
		if(p_select.options[j].selected){
			p_select.options[j].selected=false;
		}
	}
}

function verificaSelecao(p_select, p_value){
	var temItemSelecionado=false;
	
	for (j=0; j < p_select.options.length; j++){
		if(p_select.options[j].selected && p_select.options[j].value != p_value ){
			temItemSelecionado=true;
			return temItemSelecionado;
		}
	}
	return temItemSelecionado;
}
function consisteAtributoEspecifico(p_element){
	if (p_element.value=='' || p_element.value=='-1'){
		alert("Informação Obrigatória");
		p_element.focus();
		return false;
	}
	return true;
}
function consisteAtributoNome(p_element, p_desc){
	if (p_element.value=='' || p_element.value=='-1'){
		if(p_desc==''){
		alert("Informação Obrigatória.");
		}
		else{
		alert("O campo " + p_desc + " deve ser informado.");
		}
		p_element.focus();
		return false;
	}
	return true;
}
function desencripta(num){
	str_out = "";
	num_out = num;
	if(num!=""){		
		for(i=0; num_out.length>i; i+=2) {
			num_in = parseInt(num_out.substr(i,[2])) + 23;
			num_in = unescape('%' + num_in.toString(16));
			str_out += num_in;
		}
	}
	return str_out;
}

function abreForm(link, user, senha){
        var systemWindow =  window.open("","phprojekt","scrollbars=yes,resizable=yes,menubar=yes,toolbar=yes,status=yes,location=yes");
        systemWindow.document.open();
        systemWindow.document.write('<html><head></head><body>');
       	systemWindow.document.write('<form action="' + link + '?" method="post" name="sistema">');
	systemWindow.document.write('<input name="loginstring" type="hidden" value="' + user +'"/>');
       	systemWindow.document.write('<input name="user_pw" type="hidden" value="' + senha + '"/>');
       	systemWindow.document.write('<input name="module" type="hidden" value="calendar"/>');
       	systemWindow.document.write('</form>');
      	systemWindow.document.write('</body></html>');
        systemWindow.document.all.sistema.submit();
        systemWindow.document.close();
}

function MM_openBrWindow(theURL,winName,features) {
   //var x = window.open(theURL,winName,features);
   //x.close();
   window.open(theURL,winName,features);
}

function MM_openBrWindowReturn(theURL,winName,features) {
   //var x = window.open(theURL,winName,features);
   //x.close();
   return window.open(theURL,winName,features);
}

function MM_closeBrWindow(theURL,winName,features) { 
  window.close(theURL,winName,features);
}









