//<!--
function finestra(url) {
	sealWin=window.open(url,"Info",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=550,height=450');
	self.name = "mainWin";
}

// Script per le tabelle delle fiere a scomparsa------------------------------------------------------------------------
var head="display:''"
function doit(header){
var head=header.style
if (head.display=="none")
head.display=""
else
head.display="none"
}

var width=100;
var pos=1-width;
function scorrevole(lingua) {
	if (lingua == "fra") {
		scrtxt = "Les Fours de Fusion à induction CEIA ont obtenu un grand succès dans la fusion des métaux précieux. Des études adaptées ont été réalisées pour le choix de fréquences de travail adéquates, afin de réduire au minimum la perte de métal précieux et l'oxydation superficielle au moment de la fusion.";
	}
	else if (lingua == "ita") {
		scrtxt = "I Sistemi di Fusione ad Induzione ad induzione CEIA hanno ottenuto ampio riconoscimento nella fusione dei metalli preziosi. Accurati studi sono stati indirizzati alla scelta di opportune frequenze di lavoro, così da rendere praticamente inesistente il calo del metallo prezioso e l'ossidazione superficiale all'atto della fusione.";
	}
	else {
		scrtxt = "CEIA's Induction Melting Machines have achieved widespread recognition in the field of precious metal casting. Careful study has led to the choice of appropriate operating frequencies that have almost eliminated the problems of weight loss of the precious metal and surface oxidisation on melting.";
	}
  lentxt=scrtxt.length;
  
  pos++;
  var scroller="";
  if (pos==lentxt) {
    pos=1-width;
  }
  if (pos<0) {
    for (var i=1; i<=Math.abs(pos); i++) {
      scroller=scroller+" ";}
    scroller=scroller+scrtxt.substring(0,width-i+1);
  }
  else {
    scroller=scroller+scrtxt.substring(pos,width+pos);
  }
  window.status = scroller;
  setTimeout("scorrevole('" + lingua + "')",170);
}

function formlogins (lang) {
	testo = new Array();
	if (lang == "fra") {
		testo[0] = "Insérer un nom d'utilisateur valide";
		testo[1] = "Insérer un mot de passe valide";
	} else if (lang == "esp") {
		testo[0] = "Entrar una constatación de identidad válida del usuario";
		testo[1] = "Entrar una contraseña válida";
	} else if (lang == "por") {
		testo[0] = "Por favor, insira um Username válido";
		testo[1] = "Por favor, insira uma Password válida";
	} else if (lang == "por") {
		testo[0] = "Inserisci il tuo Username";
		testo[1] = "Inserisci la tua Password";
	} else {
		testo[0] = "Please enter a valid Username";
		testo[1] = "Please enter a valid Password";
	}
	if (document.logins .un.value.length < 1) {
		alert(testo[0]);
		return false;
		}
	if (document.logins .pw.value.length < 1) {
		alert(testo[1]);
		return false;
		}
document.getElementById('inviologins').disabled=true;
return true;
}

// variabili per funzione della scritta lampeggiante
colori = new Array();
colori[0] = "153,0,51";
colori[1] = "255,255,0";
//colori[2] = "204,255,255";
//colori[3] = "255,0,0";
function cambiacolore(numero) {
	colore_rgb = "rgb(" + colori[numero] + ")";
	lamp.style.color = colore_rgb;
	numero++;
	if (numero >= colori.length) {
		numero = 0
		}
	setTimeout("cambiacolore('" + numero + "')",300);
}
//-->

//gestore del calendarietto--------------------------------------------------------------------------------------
<!--
function show_calendar(str_target, str_datetime) {
        var arr_months = ["January", "February", "March", "April", "May", "June",
                "July", "August", "September", "October", "November", "December"];
        var week_days = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"];
        var n_weekstart = 1; // day week starts from (normally 0 or 1)

        var dt_datetime = str2dt(str_datetime);
        if (isNaN(dt_datetime.getMonth())){
                alert("Unable to determine the date entered; using today's date instead!");
                dt_datetime = new Date();
        }

        var dt_prev_month = new Date(dt_datetime);
        dt_prev_month.setMonth(dt_datetime.getMonth()-1);
        var dt_next_month = new Date(dt_datetime);
        dt_next_month.setMonth(dt_datetime.getMonth()+1);
        var dt_firstday = new Date(dt_datetime);
        dt_firstday.setDate(1);
        dt_firstday.setDate(1-(7+dt_firstday.getDay()-n_weekstart)%7);
        var dt_lastday = new Date(dt_next_month);
        dt_lastday.setDate(0);

        // html generation (feel free to tune it for your particular application)
        // print calendar header
        var str_buffer = new String (
                "<html>\n"+
                "<head>\n"+
                "       <title>Calendar</title>\n"+
                "</head>\n"+
                "<body onLoad=\"self.focus()\" bgcolor=\"White\" topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">\n"+
                "<table class=\"clsOTable\" cellspacing=\"0\" border=\"0\" width=\"100%\">\n"+
                "<tr><td bgcolor=\"#4682B4\">\n"+
                "<table cellspacing=\"1\" cellpadding=\"3\" border=\"0\" width=\"100%\">\n"+
                "<tr>\n <td bgcolor=\"#4682B4\"><a href=\"javascript:window.opener.show_calendar('"+
                str_target+"', '"+ dt2dtstr(dt_prev_month)+"');\">"+
                "<img src=\"http://www.ceia.net/img/prev.gif\" width=\"16\" height=\"16\" border=\"0\""+
                " alt=\"previous month\"></a></td>\n"+
                "       <td bgcolor=\"#4682B4\" align=\"center\" colspan=\"5\">"+
                "<font color=\"white\" face=\"tahoma, verdana\" size=\"2\">"
                +arr_months[dt_datetime.getMonth()]+" "+dt_datetime.getFullYear()+"</font></td>\n"+
                "       <td bgcolor=\"#4682B4\" align=\"right\"><a href=\"javascript:window.opener.show_calendar('"
                +str_target+"', '"+dt2dtstr(dt_next_month)+"');\">"+
                "<img src=\"http://www.ceia.net/img/next.gif\" width=\"16\" height=\"16\" border=\"0\""+
                " alt=\"next month\"></a></td>\n</tr>\n"
        );
        var dt_current_day = new Date(dt_firstday);
        // print weekdays titles
        str_buffer += "<tr>\n";
        for (var n=0; n<7; n++)
                str_buffer += " <td bgcolor=\"#87CEFA\">"+
                "<font color=\"white\" face=\"tahoma, verdana\" size=\"2\">"+
                week_days[(n_weekstart+n)%7]+"</font></td>\n";
        // print calendar table
        str_buffer += "</tr>\n";
        while (dt_current_day.getMonth() == dt_datetime.getMonth() ||
                dt_current_day.getMonth() == dt_firstday.getMonth()) {
                // print row heder
                str_buffer += "<tr>\n";
                for (var n_current_wday=0; n_current_wday<7; n_current_wday++) {
					if (dt_current_day.getDate() == dt_datetime.getDate() &&
							dt_current_day.getMonth() == dt_datetime.getMonth())
							// print current date
							str_buffer += " <td bgcolor=\"#FFB6C1\" align=\"right\">";
					else if (dt_current_day.getDay() == 0 || dt_current_day.getDay() == 6)
							// weekend days
							str_buffer += " <td bgcolor=\"#DBEAF5\" align=\"right\">";
					else
							// print working days of current month
							str_buffer += " <td bgcolor=\"white\" align=\"right\">";

					if (dt_current_day.getMonth() == dt_datetime.getMonth())
							// print days of current month
							str_buffer += "<a href=\"javascript:window.opener."+str_target+
							".value='"+dt2dtstr(dt_current_day)+"'+document.cal.time.value; window.close();\">"+
							"<font color=\"black\" face=\"tahoma, verdana\" size=\"2\">";
					else
							// print days of other months
							str_buffer += "<a href=\"#\"><font color=\"gray\" face=\"tahoma, verdana\" size=\"2\">";

					str_buffer += dt_current_day.getDate()+"</font></a></td>\n";
					dt_current_day.setDate(dt_current_day.getDate()+1);
                }
                // print row footer
                str_buffer += "</tr>\n";
        }
        // print calendar footer
        str_buffer +=
			"<form name=\"cal\">\n" +
			"<input type=\"hidden\" name=\"time\" value=\"\">\n</form>\n" +
			"</table>\n" +
			"</tr>\n</td>\n</table>\n" +
			"</body>\n" +
			"</html>\n";

        var vWinCal = window.open("", "Calendar",
                "width=200,height=190,status=no,resizable=yes,top=200,left=200");
        vWinCal.opener = self;
        var calc_doc = vWinCal.document;
        calc_doc.write (str_buffer);
        calc_doc.close();
}
// datetime parsing and formatting routimes. modify them if you wish other datetime format
function str2dt (str_datetime) {
    var objDate = new Date();
	var Rex = /^(\d+)\D+(\d+)\D+(\d+)$/
    switch (str_datetime.toLowerCase()) {
       case "":
       case "today":
          return objDate;
       case "yesterday":
          objDate.setDate(objDate.getDate()-1);
          return objDate;
       default:
           if (Rex.test(str_datetime)) {
              var rgDateParts = Rex.exec(str_datetime);
              objDate = new Date(rgDateParts[3], rgDateParts[1]-1, rgDateParts[2]);
           } else {
              objDate = new Date(str_datetime);
           }
           return objDate;
    }
}

function dt2dtstr (dt_datetime) {
        return (new String ((dt_datetime.getMonth()+1)+"/"+dt_datetime.getDate()+"/"+dt_datetime.getFullYear()));

}//-->

// Script per i menu a discesa a scomparsa------------------------------------------------------------------------------
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;
//-->

<!--
HM_PG_MenuWidth = 140;
HM_PG_FontFamily = "arial, verdana, sans-serif";
HM_PG_FontSize = 9;
HM_PG_FontBold = 1;
HM_PG_FontItalic = 0;
HM_PG_FontColor = "#990033";
HM_PG_FontColorOver = "#FFCC66";
HM_PG_BGColor = "#FFCC66";
HM_PG_BGColorOver = "#990033";

HM_PG_BorderColor = "#990033";
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
HM_PG_SeparatorColor = "#990033";

HM_PG_ImageSrc = "HM_More_black_right.gif";
HM_PG_ImageSrcLeft = "HM_More_black_left.gif";
HM_PG_ImageSrcOver = "HM_More_white_right.gif";
HM_PG_ImageSrcLeftOver = "HM_More_white_left.gif";
HM_PG_ImageHorizSpace = 0;
HM_PG_ImageVertSpace = "middle";

HM_PG_KeepHilite = 1; 
HM_PG_ClickStart = 0;
HM_PG_ChildOverlap = 20;
HM_PG_ChildOffset = 10;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .5;
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
HM_PG_RightToLeft = 0;

HM_PG_ShowLinkCursor = 1;
HM_PG_NSFontOver = true;

HM_PG_ScrollBarColor = "lightgrey";
HM_PG_ScrollImgSrcTop = "HM_More_black_top.gif";
HM_PG_ScrollImgSrcBot = "HM_More_black_bot.gif";
HM_PG_ScrollImgWidth = 9;
HM_PG_ScrollImgHeight = 5;

//HM_a_TreesToBuild = [2,3]

// Menu a discesa-------------------------------------------------------------------------------------------
HM_Array1 = [
[],
["Le réchauffement du métal","http://www.ceia-melters.com/melting.asp",1,0,0],
["Recherche","http://www.ceia-melters.com/research.asp",1,0,0],
["Technologie","http://www.ceia-melters.com/technology.asp",1,0,0],
["Compatibilité","http://www.ceia-melters.com/compatibility.asp",1,0,0],
["Système Qualité","http://www.ceia-melters.com/qualitysystem.asp",1,0,0],
["Publications","http://www.ceia-melters.com/communications.asp",1,0,0],
]

HM_Array2 = [
[],
["Il riscaldamento del metallo","http://www.ceia-melters.com/melting.asp",1,0,0],
["Ricerca","http://www.ceia-melters.com/research.asp",1,0,0],
["Tecnologia","http://www.ceia-melters.com/technology.asp",1,0,0],
["Compatibilità","http://www.ceia-melters.com/compatibility.asp",1,0,0],
["Sistema di Qualità","http://www.ceia-melters.com/qualitysystem.asp",1,0,0],
["Pubblicazioni","http://www.ceia-melters.com/communications.asp",1,0,0],
]

HM_Array3 = [
[],
["The heating of metal","http://www.ceia-melters.com/melting.asp",1,0,0],
["Research","http://www.ceia-melters.com/research.asp",1,0,0],
["Technology","http://www.ceia-melters.com/technology.asp",1,0,0],
["Compatibility","http://www.ceia-melters.com/compatibility.asp",1,0,0],
["Quality System","http://www.ceia-melters.com/qualitysystem.asp",1,0,0],
["Press Communications","http://www.ceia-melters.com/communications.asp",1,0,0],
]

HM_Array4 = [
[],
["Assistance technique","http://www.ceia-melters.com/assistance.asp",1,0,0],
["Demande d'assistance","http://www.ceia-melters.com/assistancereq.asp",1,0,0],
]

HM_Array5 = [
[],
["Assistenza","http://www.ceia-melters.com/assistance.asp",1,0,0],
["Richiesta di assistenza","http://www.ceia-melters.com/assistancereq.asp",1,0,0],
]

HM_Array6 = [
[],
["Technical Assistance","http://www.ceia-melters.com/assistance.asp",1,0,0],
["Request for Assistance","http://www.ceia-melters.com/assistancereq.asp",1,0,0],
]

HM_Array7 = [
[],
["Coulee continue électronique","http://www.ceia-melters.com/index.asp?sec=A",1,0,0],
["Fondeuses avec group de fusion séparé","http://www.ceia-melters.com/index.asp?sec=B",1,0,0],
["Fondeuses avec group de fusion incorporé","http://www.ceia-melters.com/index.asp?sec=C",1,0,0],
["Gamme complète de produit","http://www.ceia-melters.com/index.asp?sec=Z",1,0,0],
]

HM_Array8 = [
[],
["Colate Continue","http://www.ceia-melters.com/index.asp?sec=A",1,0,0],
["Sistemi di Fusione ad Induzione con Gruppo di Fusione Separato","http://www.ceia-melters.com/index.asp?sec=B",1,0,0],
["Sistemi di Fusione ad Induzione con Gruppo di Fusione Incorporato","http://www.ceia-melters.com/index.asp?sec=C",1,0,0],
["Lista dei Prodotti completa","http://www.ceia-melters.com/index.asp?sec=Z",1,0,0],
]

HM_Array9 = [
[],
["Continuous Casting Machines","http://www.ceia-melters.com/index.asp?sec=A",1,0,0],
["Melting Machines with Separate Casting Unit","http://www.ceia-melters.com/index.asp?sec=B",1,0,0],
["Self-Contained Melting Machines","http://www.ceia-melters.com/index.asp?sec=C",1,0,0],
["Full Range of Products","http://www.ceia-melters.com/index.asp?sec=Z",1,0,0],
]

HM_UserAgent = navigator.userAgent;
      HM_DOM = (document.getElementById) ? true : false;
      HM_NS4 = (document.layers) ? true : false;
       HM_IE = (document.all) ? true : false;
      HM_IE4 = HM_IE && !HM_DOM;
      HM_Mac = (navigator.appVersion.indexOf("Mac") != -1);
     HM_IE4M = HM_IE4 && HM_Mac;

HM_Opera = (window.opera) ? true : false;
if(HM_Opera) {
    HM_BrowserPattern = /Opera(\/| )(\d+.*)/;
    HM_VersionSupported = 7;
}

HM_Konqueror = (HM_UserAgent.indexOf("Konqueror")!=-1);
if(HM_Konqueror) {
    HM_BrowserPattern = /(Konqueror\/)(\d+.*)/;
    HM_VersionSupported = 3;
}

if(HM_Opera || HM_Konqueror) {
    if (HM_UserAgent.match) {
       HM_Matches = HM_UserAgent.match(HM_BrowserPattern);
       if (HM_Matches&&HM_Matches[2]) {
          HM_BrowserVersion = parseFloat(HM_Matches[2]);
       } else HM_BrowserVersion = 0;
       HM_IsMenu = (HM_BrowserVersion >= HM_VersionSupported);
    } else {
       HM_BrowserVersion = 0;
       HM_IsMenu = false;
    }
} else {
    HM_BrowserVersion = 0;
    HM_IsMenu = !HM_IE4M && (HM_DOM || HM_NS4 || HM_IE4 );
}

if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

HM_GL_MenuWidth          = 140;
HM_GL_FontFamily         = "arial, verdana, sans-serif";
HM_GL_FontSize           = 10;
HM_GL_FontBold           = true;
HM_GL_FontItalic         = false;
HM_GL_FontColor          = "#990033";
HM_GL_FontColorOver      = "#FFCC66";
HM_GL_BGColor            = "#FFCC66";
HM_GL_BGColorOver        = "#990033";
HM_GL_ItemPadding        = 3;

HM_GL_BorderWidth        = 1;
HM_GL_BorderColor        = "#990033";
HM_GL_BorderStyle        = "solid";
HM_GL_SeparatorSize      = 1;
HM_GL_SeparatorColor     = "#990033";

HM_GL_ImageSrc           = "HM_More_black_right.gif";
HM_GL_ImageSrcLeft       = "HM_More_black_left.gif";

HM_GL_ImageSrcOver       = "HM_More_white_right.gif";
HM_GL_ImageSrcLeftOver   = "HM_More_white_left.gif";
HM_GL_PreloadImages      = true;

HM_GL_ImageSize          = 5;
HM_GL_ImageHeight        = 9;
HM_GL_ImageHorizSpace    = 5;
HM_GL_ImageVertSpace     = "middle";

HM_GL_KeepHilite         = false;
HM_GL_ClickStart         = false;
HM_GL_ClickKill          = 0;
HM_GL_ChildOverlap       = 40;
HM_GL_ChildOffset        = 10;
HM_GL_ChildPerCentOver   = null;
HM_GL_TopSecondsVisible  = .5;
HM_GL_ChildSecondsVisible = .3;
HM_GL_StatusDisplayBuild = 1;
HM_GL_StatusDisplayLink  = 1;
HM_GL_UponDisplay        = null;
HM_GL_UponHide           = null;

HM_GL_RightToLeft        = false;
HM_GL_CreateTopOnly      = true;
HM_GL_ShowLinkCursor     = true;

HM_GL_ScrollEnabled      = true;
HM_GL_ScrollOver         = (HM_Opera) ? 1 : 0;
HM_MacN7                 = (HM_Mac&&(HM_UserAgent.indexOf('Netscape/7')!=-1))?true:false;
HM_GL_ScrollInterval     = (HM_MacN7) ? 100 : 20;
HM_GL_ScrollBarHeight    = 16;
HM_GL_ScrollBarColor     = "lightgrey";
HM_GL_ScrollImgSrcTop    = "HM_More_black_top.gif";
HM_GL_ScrollImgSrcBot    = "HM_More_black_bot.gif";
HM_GL_ScrollImgWidth     = 9;
HM_GL_ScrollImgHeight    = 5;
HM_GL_ScrollBothBars     = true;

HM_GL_FramesEnabled      = false;
HM_GL_FramesNavFramePos  = "top";
HM_GL_FramesMainFrameName = "main";

HM_GL_HoverTimeTop       = 0;
HM_GL_HoverTimeTree      = 0;

HM_GL_ImageDir           = "";
HM_ScriptDir             = HM_GL_ImageDir;

function HW(kx){var b=0;var c=HM_DOM?Hg.document.getElementById(kx):Hg[kx];var d=HM_DOM?parseInt(c.style.width)+((Hjt||Hju)?0:Hu*2):HM_IE4?c.style.pixelWidth:c.clip.width;var gh=HM_IE?(HM_DOM?Hh.clientWidth:Hg.document.body.clientWidth):Hg.innerWidth;
return Math.max(parseInt((gh-d)/2),b);}
HM_f_CenterMenu=HW;

if(HM_IsMenu) {
	HM_BrowserString = HM_NS4 ? "NS4" : HM_Opera ? "OPR" : HM_DOM ? "DOM" : "IE4";
//	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='" + HM_ScriptDir + "HM_Arrays.js' TYPE='text/javascript'><\/SCR" + "IPT>");
//	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='" + HM_ScriptDir + "HM_Script"+ HM_BrowserString +".js' TYPE='text/javascript'><\/SCR" + "IPT>");
}

Hi="5.31";Hjg=((parseInt(navigator.productSub)>=20020000)&&
(navigator.vendor.indexOf("Apple Computer")!=-1));
if(Hjg){HM_BrowserPattern=/Safari\/(\d+)/;HM_Matches=HM_UserAgent.match(HM_BrowserPattern);if(HM_Matches&&HM_Matches[1])HM_BrowserVersion=(HM_Matches[1]-0);else HM_BrowserVersion=0;}
HM_NS6=((navigator.product=="Gecko")||(Hjg));
if(HM_NS6)HM_IE=HM_Konqueror=false;else if(HM_Konqueror)HM_IE=HM_NS6=Hjg=false;HM_IE5M=HM_IE&&HM_Mac;HM_IE5W=HM_IE&&!HM_Mac;HM_IE50W=(HM_IE5W&&/MSIE\s*5(\.0|\s+)/i.test(HM_UserAgent))?true:false;HM_IEpos=!HM_NS6||(parseInt(navigator.productSub)>=20010710);
Hjf=(parseInt(navigator.productSub)<20010726);Hju=false;Hld=((HM_Konqueror)||(parseInt(navigator.productSub)>=20020823));
if(Hjg&&(HM_BrowserVersion<100))Hld=false;Hj=[
["MenuWidth",150,"number","k"],
["FontFamily","Arial,sans-serif","","l"],
["FontSize",10,"number","m"],
["FontBold",false,"boolean","n"],
["FontItalic",false,"boolean","o"],
["FontColor","black","","p"],
["FontColorOver","white","","q"],
["BGColor","white","","r"],
["BGColorOver","black","","s"],
["ItemPadding",3,"number","t"],
["BorderWidth",2,"number","u"],
["BorderColor","red","","v"],
["BorderStyle","solid","","hf"],
["SeparatorSize",1,"number","w"],
["SeparatorColor","yellow","","gr"],
["ImageDir",HM_ScriptDir,"","x"],
["ImageSrc","HM_More_black_right.gif","image","y"],
["ImageSrcOver","","image","z"],
["ImageSrcLeft","HM_More_black_left.gif","image","A"],
["ImageSrcLeftOver","","image","B"],
["ImageSize",5,"number","C"],
["ImageHeight",9,"number","l5"],
["ImageHorizSpace",0,"number","D"],
["ImageVertSpace","middle","","gi"],
["KeepHilite",false,"boolean","F"],
["ClickStart",false,"boolean","G"],
["ClickKill",true,"boolean","k3"],
["ChildOverlap",20,"number","I"],
["ChildOffset",10,"number","J"],
["ChildPerCentOver",null,"number","K"],
["TopSecondsVisible",.5,"number","L"],
["ChildSecondsVisible",.3,"number","M"],
["StatusDisplayBuild",1,"boolean","N"],
["StatusDisplayLink",1,"boolean","O"],
["UponDisplay",null,"delayed","P"],
["UponHide",null,"delayed","Q"],
["RightToLeft",false,"boolean","R"],
["CreateTopOnly",0,"boolean","S"],
["NSFontOver",true,"boolean","U"],
["ShowLinkCursor",false,"boolean","T"],
["ScrollEnabled",false,"boolean","V"],
["ScrollOver",false,"boolean","kw"],
["ScrollInterval",20,"number","kv"],
["ScrollBarHeight",16,"number","k2"],
["ScrollBarColor","lightgrey","","k1"],
["ScrollImgSrcTop","HM_More_black_top.gif","image","kz"],
["ScrollImgSrcBot","HM_More_black_bot.gif","image","ky"],
["ScrollImgWidth",9,"number","it"],
["ScrollImgHeight",5,"number","1"],
["ScrollBothBars",false,"boolean","2"],
["ScrollHeightMin",30,"number","3"],
["FramesEnabled",false,"boolean","4"],
["FramesNavFramePos","","","5"],
["FramesMainFrameName","main","","6"],
["WindowPadding",15,"number","7"],
["HighestMenuNumber",100,"number","8"],
["ReloadInterval",200,"number","gj"],
["HoverTimeTop",0,"number","9"],
["HoverTimeTree",0,"number","aa"],
["TopKeepInWindowX",true,"boolean","le"],
["TopKeepInWindowY",true,"boolean","lf"],
["CreateChildrenJIT",false,"boolean","lg"],
["CreateMenusOnLoad",true,"boolean","lh"],
["PreloadImages",true,"boolean","lw"]
];
Hab="HM_Menu";Hac="HM_Item";Had="HM_Array";Hl3="HM_Img";Hl2=new RegExp("^("+Hl3+"\\d+).*$");Function.prototype.gk=true;Function.prototype.gm=false;String.prototype.gk=false;String.prototype.gm=true;
String.prototype.gn=false;String.prototype.gl=false;Number.prototype.gm=false;Number.prototype.gk=false;Number.prototype.gn=false;Number.prototype.gl=true;Boolean.prototype.gm=false;Boolean.prototype.gk=false;Boolean.prototype.gn=true;
Boolean.prototype.gl=false;Array.prototype.gp=false;Array.prototype.k6=true;
function HW1(ae){var af=ae[0];var ag=ae[1];var kt=ae[3];var ah="H"+kt;
if(typeof window["HM_PG_"+af]=="undefined"){if(typeof window["HM_PG_"+kt]=="undefined"){if(typeof window["HM_GL_"+af]=="undefined"){if(typeof window["HM_GL_"+kt]=="undefined"){window[ah]=ag;}else{window[ah]=window["HM_GL_"+kt];
}}else{window[ah]=window["HM_GL_"+af];}}else{window[ah]=window["HM_PG_"+kt];}}else{window[ah]=window["HM_PG_"+af];}ae[0]=ah;ae[1]=window[ah];}
function HW2(ai,aj,ak){var al,am;if(typeof ai=="undefined"||ai==null||(ai.gm&&ai.length==0)){return aj;}if(ak!="delayed"){while(ai.gm){am=ai.indexOf("(");if(am!=-1){al="window."+ai.substr(0,am);if(typeof eval(al)!="undefined"&&eval(al).gk){ai=eval(ai);
}}else break;}}while(ai.gk){ai=ai()}switch(ak){case "number":while(ai.gm){ai=eval(ai)}break;case "boolean":while(!ai.gn){ai=(ai.gl)?ai?true:false:eval(ai);}break;case "image":if(Hx)ai=Hx+ai;break;}return ai;}
for(var i=0;i<Hj.length;i++){HW1(Hj[i]);window[Hj[i][0]]=HW2(window[Hj[i][0]],null,Hj[i][2]);}
if(isNaN(Hgi)){if((Hgi!="middle")&&(Hgi!="bottom"))Hgi=0;}
else Hgi-=0;
if(Hlw){Hlx=[];var ly=[Hy,Hz,HA,HB,Hkz,Hky];var lz=0;for(var i=0;i<ly.length;i++){if(ly[i]){Hlx[lz]=new Image();Hlx[lz++].src=ly[i];}}if(window.HM_o_RolloverImages){for(var f in HM_o_RolloverImages){if(HM_o_RolloverImages[f]){Hlx[lz]=new Image();
Hlx[lz++].src=HM_o_RolloverImages[f];}}}}
function HXN(){if(HM_IE5M)return false;var jp=Hg.document.body;while(!jp.dir&&jp.parentNode)jp=jp.parentNode;return((typeof(jp.dir)=="string")&&(/^rtl$/i.test(jp.dir)))?true:false;}
HK=(isNaN(parseFloat(HK)))?null:parseFloat(HK)/100;Han=HM*1000;
function HW3(ar){var ao=false;var ap=(typeof eval("window."+ar)=="object");if(ap){var aq=eval(ar);if(aq.k6&&aq.length>1){ao=true;if(!aq.gp){while((typeof aq[aq.length-1]!="object")||(!aq[aq.length-1].k6)){aq.length--;}aq.gp=true;}}}return ao;}
if(typeof(Has)=="undefined"){Has=[];if(Hlh){for(i=1;i<=H8;i++){if(HW3(Had+i))Has[Has.length]=i;}}}
Hh=null;Hat=false;Hjh=false;Hg=window;Hji=false;Hav=["permission","access","security","unsafe"];Hjj=true;Hjk=null;Hay=false;Hjl=false;Hjm=false;Hax=true;Hjn=[];Haz=0;Hbf=null;Hk7=false;
function HWR(el){Hjn[Hjn.length]=el;}
function HWS(){Hkb=Hkc=Hkd=Hke=Hkf=Hkg=null;Hbg=null;Hkr=null;Hku=null;Hbe=null;if(Hbf!=null){Hbf.cm=null;Hbf.db=null;Hbf=null;}var jo=Hjn.length;for(var i=jo-1;i>=0;i--){var jp=Hjn[i];if(jp){jp.ct=null;jp.cu=null;jp.gx=null;jp.bn=null;jp.child=null;
jp.siblingBelow=null;jp.hg=null;jp.cs=null;jp.Fs=null;jp.Ft=null;jp.onmouseenter=null;jp.onmouseleave=null;jp.onmouseover=null;jp.onmouseout=null;jp.onclick=null;jp.onmousedown=null;jp.onselectstart=null;jp.onmousewheel=null;jp.lv=null;jp=null;}Hjn[i]=null;
}for(var i=0;i<Haz;i++){if(Hbb[i]){Hbb[i].tree.db=null;Hbb[i].tree.cm=null;Hbb[i]=null;}}Haz=0;Hbb=[];Hjn=[];}
function HW4(){HWS();Hbi=false;Hbj=false;Hbd=null;Hbk=5000;Hbl=null;}
HW4();
if(H4){if((parent==self)||(!H5)){H4=false;}}
function HW5(){if(HM_IE5M&&Hbi)return true;Hay=true;HW4();Hbi=HW8();Hax=false;Hat=true;Hjj=false;Hay=false;if(!Hk7){Hk7=true;HXu();}return Hbi;}
function HXD(){return true;}
function HXC(){HWt();return HXw();}
function HWT(){if((typeof(Hg.document.body)=="undefined")||(Hg.document.body==null))return false;Hjr=(HM_IE&&Hg.document.compatMode)?Hg.document.compatMode=="CSS1Compat":false;
Hjs=(HM_IE&&Hg.document.doctype)?Hg.document.doctype.name.indexOf(".dtd")!=-1:Hjr;Hjt=(HM_IE)&&!Hjs;Hlu=(HM_NS6&&!Hjg&&(parseInt(navigator.productSub)<20030312)&&HXN());Hjh=(typeof(Hg.document.body.onmouseenter)!="undefined");
if(HM_IE||HM_Konqueror)Hh=Hjr?Hg.document.documentElement:Hg.document.body;if(Hk3){HXw=(Hg.document.onmousedown)?Hg.document.onmousedown:HXD;Hg.document.onmousedown=HXC;}else{Hbw=HL*1000;}var iu=HM_IE?Hg.document.body:Hg;HXx=(iu.onresize)?iu.onresize:HXD;
iu.onresize=HWN;if(H4){HXy=(iu.onunload)?iu.onunload:HXD;iu.onunload=HWO;}Hg.Hlc=true;
if((typeof(window.HM_GL_RightToLeft)=="undefined")&&(typeof(window.HM_PG_RightToLeft)=="undefined")&&(typeof(window.HM_GL_R)=="undefined")&&(typeof(window.HM_PG_R)=="undefined"))HR=HXN();return true;}
function HW8(){if(H4&&HM_IE5M)return false;var gb=false;if(H4){var bs=parent.frames[H6];if(typeof bs=="undefined"){H4=false;var k9=HXF();}else{Hg=bs;var k9=HXF();if(!Hjm){if(Hld){var jv=parent.document.getElementsByName(H6)[0];jv.addEventListener('load',
HW5,false);Hji=true;}else if(parent.HM_UseFrameLoad&&!Hjg){Hji=true;parent.HM_f_LoadMenus=HW5;}Hjm=true;if(k9){var iu=HM_IE?Hg.document.body:Hg;iu.onunload=HWO;HXy=HXD;Hg.location.replace(Hg.location.href);return false;}}}}else{var k9=HXF();
}try{var jy=typeof(Hg.document);}catch(e){gb=HX2(e);}if(gb)return false;else gb=false;if(HM_IE){if(typeof(Hg.document)=="unknown")return false;if(Hg.document.readyState!="complete")return false;}try{var Initialized=k9?false:HWT();}catch(e){gb=HX2(e);
}if(gb||!Initialized)return false;HXI();return true;}
function HW9(ix){var c=null;if(!HWU())return c;if((Hg)&&(Hg.document)){c=Hg.document.getElementById(ix);}return c;}
function HWU(){var jw=false;var jx=null;try{var jy=typeof(Hg.document);if((HM_IE)&&(typeof(Hg.document)=="unknown"))return false;if((HM_IE||Hjg)&&(Hg.document.readyState!="complete"))return false;jx=((Hg)&&(Hg.document))?Hg.document:null;
var jz=Hg.document.getElementById('HM_dummy_menu');if(jx)jw=false;}catch(e){jw=HX2(e);}return(!jw);}
function HXH(lm){if(!HW3(Had+lm))return null;Hbe=eval(Had+lm);var bx=Hbe[0];var by=false;var bz=null;for(var i=1;i<Hbe.length;i++){bz=Hbe[i];if(bz[bz.length-1]){by=true;break}}Hbf={k:k=HW2(bx[0],Hk,"number"),ca:ca=HW2(bx[1],null,"delayed"),cb:cb=HW2(bx[2],
null,"delayed"),cc:k-(Hu*2),p:HW2(bx[3],Hp),q:HW2(bx[4],Hq),r:HW2(bx[5],Hr),s:HW2(bx[6],Hs),v:HW2(bx[7],Hv),gr:HW2(bx[8],Hgr),ce:((ca==null)||(cb==null))?false:HW2(bx[9],false,"boolean"),cf:cf=HW2(bx[10],false,"boolean"),cg:by?HW2(bx[11],false,
"boolean"):false,ch:(!cf||!by)?false:HW2(bx[12],false,"boolean"),ci:by?HW2(bx[13],true,"boolean"):false,cj:by?HW2(bx[14],true,"boolean"):false,P:HW2(bx[15],HP,"delayed"),Q:HW2(bx[16],HQ,"delayed"),R:HW2(bx[17],HR,"boolean"),G:HW2(bx[18],HG,"boolean"),
ck:HW2(bx[19],false,"boolean"),cl:HW2(bx[20],false,"boolean"),le:HW2(bx[21],Hle,"boolean"),lf:HW2(bx[22],Hlf,"boolean")};Hkr=null;HWc(lm);Hbb[Haz]=Hbf.cm;Haz++;if(Hbf.ce){with(Hbf.cm){Hbf.cm.xPos=eval(Hbf.ca);Hbf.cm.yPos=eval(Hbf.cb);moveTo(Hbf.cm.xPos,
Hbf.cm.yPos);style.zIndex=Hbk;}if(HM_IE5M){var en="if((HWU())&&(Hg)&&(Hg.document)){var Hkb=Hg.document.getElementById('"+Hbf.cm.id+"');";en+="if(Hkb&&Hkb.HXq)Hkb.HXq(true);}";setTimeout(en,10);}else Hbf.cm.style.visibility="visible";}return Hkr;}
function HXI(){for(var t=0;t<Has.length;t++){HXH(Has[t]);}if(HN)window.status=Haz+" Hierarchical Menu Trees Created";}
HWa=HXI;
function HWE(){this.tree=Hbf;this.index=Hkr.bo-1;this.hi=(Hkr.bo==Hkr.cy);this.array=Hkr.array[Hkr.bo];this.dg=(Hlu&&this.menu.cw)?"<span dir='rtl'>"+this.array[0]+"</span>":(Hjg&&this.menu.cz)?"<div>"+this.array[0]+"</div>":this.array[0];
this.dh=this.array[1];this.di=HW2(this.array[3],false,"boolean");this.dj=(!this.di&&HW2(this.array[2],true,"boolean"));this.dc=this.array[4]&&HW3(Had+this.array[4]);this.jd=this.dc?this.array[4]:null;this.child=null;if(Hjh){this.onmouseenter=HWh;
this.onmouseleave=HWj;}else{this.onmouseover=HWh;this.onmouseout=HWj;}this.HXp=HWI;this.HXa=HWi;this.dn=(this.menu==this.tree.db)?H9:Haa;this.HX9=HWZ;this.HXr=HWX;if(HM_IE5M)this.HXs=HWY;this.HXt=HX;this.HXP=HXO;
this.G=(this.dc&&this.tree.G&&(this.tree.ce&&(this.tree.cm==this.menu)))?true:false;if(this.G){this.dh="";this.onclick=this.HXa;}this.I=null;}
function HWG(ix){var gw=Hg.document.createElement("DIV");HWR(gw);var k=((Hjt)?Hbf.k:Hbf.cc)+"px";with(gw){id=ix;if(!Hbf.R&&HXN())dir="ltr";with(style){position="absolute";visibility="hidden";left=(HM_IE&&HXN())?"0px":"-500px";top="-2000px";width=k;
}}if(HV){gw.cs=gw.appendChild(Hg.document.createElement("DIV"));with(gw.cs.style){position="absolute";top="0px";left="0px";width=k;}gw.cs.style.width=k;gw.cs.top=0;if(typeof document.onmousewheel!="undefined")gw.onmousewheel=HX1;}else{gw.cs=gw;}return gw;}
function HWc(cq){if(!HW3(Had+cq))return false;Hbe=eval(Had+cq);var cr=Hg.document.getElementById(Hab+cq);if(cr){var la=cr.parentNode;la.removeChild(cr);cr=null;}cr=HWG(Hab+cq);if(Hkr){cr.ct=Hkr;cr.cu=Hkr.gx;cr.cu.child=cr;cr.cv=true;cr.cw=Hbf.cg;
cr.cx=Hbf.cj;}else{cr.cw=Hbf.cf;cr.cx=Hbf.ci;Hbf.cm=Hbf.db=cr;}Hkr=cr;Hkr.array=[Hbe[0]];var j=Hbe.length-1;var ls=HXN();for(var i=1;i<Hbe.length;i++){if(Hbe[i][4])Hbe[i][4]=cq+"_"+i;else Hbe[i][4]="";if(ls&&Hkr.cw){Hkr.array[j]=Hbe[i];j--;
}else Hkr.array[i]=Hbe[i];}Hkr.tree=Hbf;Hkr.bo=0;Hkr.cy=Hkr.array.length-1;Hkr.cz=((Hkr.cv&&Hbf.cl)||(!Hkr.cv&&Hbf.ck));Hkr.HXb=HWk;Hkr.count=cq;Hkr.HXc=HWl;if(Hjh){Hkr.onmouseenter=HWf;Hkr.onmouseleave=HWg;}else{Hkr.onmouseover=HWf;Hkr.onmouseout=HWg;
}Hkr.HXd=HWo;Hkr.HXg=HWr;Hkr.HXh=HWs;Hkr.HXe=HWp;Hkr.HXf=HWq;Hkr.bm=false;Hkr.isOn=false;Hkr.bc=null;Hkr.bn=null;Hkr.HXo=HWH;Hkr.hn=false;Hkr.HXq=HWJ;Hkr.bq=false;Hkr.HXj=HWv;Hkr.HXk=HWw;Hkr.HXl=HWA;Hkr.hd=false;if(HM_IE)Hkr.onselectstart=HWL;
Hkr.moveTo=HWK;Hkr.HXo();if(HM_IE5M&&HV&&!Hkr.cw&&!(Hbf.ch&&Hkr.ct==Hbf.cm)&&!(Hbf.ce&&Hkr==Hbf.cm)){Hkr.HXj();}while(Hkr.bo<Hkr.cy){Hkr.bo++;Hkr.gx=Hg.document.getElementById(Hac+cq+"_"+Hkr.bo);
if(!Hkr.gx){if(HN)window.status="Creating Hierarchical Menus:"+cq+"/"+Hkr.bo;Hkr.gx=HWW(cq);}if(!Hlg&&Hkr.gx.dc&&(!HS||Hkr.cv)){dd=HWc(Hkr.gx.jd);if(dd){Hkr=Hkr.ct;}}}Hg.document.body.appendChild(Hkr);if(!HM_IE5M)Hkr.HXq();return Hkr;}
function HWH(){with(this.style){borderWidth=Hu+"px";borderColor=Hbf.v;borderStyle=Hhf;overflow="hidden";cursor="default";}}
function HWW(cq){var gv=Hg.document.createElement("DIV");gv.id=Hac+cq+"_"+Hkr.bo;gv.style.position="absolute";gv.style.visibility="inherit";if(Hlu&&Hkr.cw){gv.dir="ltr";gv.style.textAlign="right";}Hkr.cs.appendChild(gv);HWR(gv);gv.menu=Hkr;gv.k4=null;
gv.HXn=HWE;gv.HXn();gv.siblingBelow=gv.previousSibling;if(gv.dh&&!gv.G){gv.onclick=HWm;if(HT)gv.style.cursor=(HM_NS6||HM_Konqueror)?"pointer":"hand";}gv.hasImage=(gv.dc&&Hkr.cx);if(gv.hasImage){var kh=Hg.document.createElement("IMG");HWR(kh);
gv.ed=Hbf.R?HA:Hy;if(!Hbf.R){gv.ec=(Hz&&(Hz!=Hy));}else{gv.ec=(HB&&(HB!=HA));}if(gv.ec){gv.ee=Hbf.R?HB:Hz;if(!gv.ee)gv.ee=gv.ed;if(gv.di)gv.ed=gv.ee;}with(kh){width=HC;height=Hl5;if(gv.ed)src=gv.ed;hspace=0;vspace=0;with(style){position="absolute";
if(typeof(Hgi)=="number")top=(Hgi+Ht)+"px";else top=Ht+"px";if(Hbf.R){left=(Ht+HD)+"px";}}}gv.hg=kh;}gv.innerHTML=gv.dg;if(kh)gv.insertBefore(kh,gv.firstChild);gv.HXp();if(window.HM_o_RolloverImages&&!HM_IE5M){var l1=gv.getElementsByTagName("img");
for(var i=0;i<l1.length;i++){var l4=l1[i].id;if(typeof(l4)!="undefined")l4=l4.replace(Hl2,"$1");if(l4&&HM_o_RolloverImages[l4]){if(!gv.lv)gv.lv=[];l1[i].ed=l1[i].src;l1[i].ee=HM_o_RolloverImages[l4];gv.lv[gv.lv.length]=l1[i];}}}return gv;}
function HWI(){with(this.style){backgroundColor=(this.di)?Hbf.s:Hbf.r;color=(this.di)?Hbf.q:Hbf.p;padding=Ht+"px";font=((Hn)?"bold ":"normal ")+Hm+"pt "+Hl;fontStyle=(Ho)?"italic":"normal";if(HM_IE)overflow="hidden";
if((this.menu.cx&&(!this.menu.cz||(this.menu.cz&&this.tree.R&&!this.menu.cw)))||(this.menu.cz&&this.hg)){var gt=(Ht*2)+HC+HD;if(Hbf.R)paddingLeft=gt+"px";else paddingRight=gt+"px";}if(!this.hi){var iy=Hw+"px solid "+this.tree.gr;
if(this.menu.cw)borderRight=iy;else borderBottom=iy;}if(this.menu.cw){top="0px";if(!this.menu.cz){if(Hjt){if(this.hi)width=(Hbf.k-Hu-Hw)+"px";else width=(Hbf.k-Hu)+"px";left=(this.index*(Hbf.k-Hu))+"px";
}else{width=(Hbf.k-Hu-parseInt(paddingLeft)-parseInt(paddingRight)-Hw)+"px";left=((this.index*parseInt(width))+((Hw*this.index)))+((parseInt(paddingLeft)+parseInt(paddingRight))*this.index)+"px";}var hj=parseInt(left)+parseInt(width);
this.menu.style.width=this.menu.cs.style.width=hj+((Hjt)?(Hu*2):(parseInt(paddingLeft)+parseInt(paddingRight)))+"px";}}else{left="0px";if(!this.menu.cz){if(Hjt)width=Hbf.cc+"px";else width=(Hbf.cc-(parseInt(paddingLeft)+parseInt(paddingRight)))+"px";}}}}
function HWJ(iz){var Items=this.cs.childNodes;var ek=Items.length;var el;if(this.cw){if(this.cz){for(var i=0;i<ek;i++){el=Items[i];el.hh=(HM_IE)?el.scrollWidth:el.offsetWidth;if(isNaN(el.hh))el.hh=el.offsetWidth;
if(HM_IE5M)el.hh+=(parseInt(el.style.paddingLeft)+parseInt(el.style.paddingRight));if(Hjt){el.hh=Math.min(el.hh,this.tree.cc);if(el.hi)el.style.width=(el.hh)+"px";else el.style.width=(el.hh+Hw)+"px";
el.style.left=(el.index?parseInt(el.siblingBelow.style.left)+parseInt(el.siblingBelow.style.width):0)+"px";}else{el.hh-=(parseInt(el.style.paddingLeft)+parseInt(el.style.paddingRight));if(!Hjr&&!HM_IE5M&&!el.hi)el.hh-=Hw;
el.ki=el.tree.cc-(parseInt(el.style.paddingLeft)+parseInt(el.style.paddingRight));el.style.width=Math.min(el.ki,el.hh)+"px";el.style.left=(el.index?(parseInt(el.siblingBelow.style.left)+el.siblingBelow.offsetWidth):0)+"px";
}if(el.hi){hj=parseInt(el.style.left)+parseInt(el.style.width);this.style.width=this.cs.style.width=hj+((Hjt)?(Hu*2):(parseInt(el.style.paddingLeft)+parseInt(el.style.paddingRight)))+"px";}}}var hk=0;for(var i=0;i<ek;i++){el=Items[i];
if(el.index){var lt=el.offsetHeight-((Hjt)?0:(Ht*2));hk=Math.max(hk,lt);}else{hk=el.offsetHeight-((Hjt)?0:(Ht*2));}}for(var i=0;i<ek;i++){el=Items[i];el.style.height=hk+"px";if(el.hg){if(this.tree.R){el.hg.style.left=(Ht+HD)+"px";
}else{el.hg.style.left=(el.offsetWidth-((el.hi?0:Hw)+Ht+HD+HC))+"px";}if(typeof(Hgi)!="number"){if(Hgi=="bottom"){el.hg.style.top=Math.max((el.offsetHeight-Hl5-Ht),Ht)+"px";}else{el.hg.style.top=parseInt(Math.max((el.offsetHeight-Hl5),Ht)/2)+"px";
}}el.hg.height=Hl5;el.hg.width=HC;}}this.style.height=this.cs.style.height=hk+((Hjt)?Hu*2:(Ht*2))+"px";}else{if(this.cz){var hl=0;for(var i=0;i<ek;i++){el=Items[i];el.hh=(HM_IE)?el.scrollWidth:el.offsetWidth;if(isNaN(el.hh))el.hh=el.offsetWidth;
if(HM_IE5M)el.hh+=(parseInt(el.style.paddingLeft)+parseInt(el.style.paddingRight));hl=Math.min((Math.max(hl,el.hh)),this.tree.cc);}for(var i=0;i<ek;i++){if(Hjt){Items[i].style.width=hl+"px";
}else{Items[i].style.width=(hl-parseInt(Items[i].style.paddingRight)-parseInt(Items[i].style.paddingLeft))+"px";}}this.style.width=this.cs.style.width=(Items[0].offsetWidth+((Hjt)?Hu*2:0))+"px";}for(var i=0;i<ek;i++){var el=Items[i];
if(el.index){var dt=(el.siblingBelow.offsetHeight);el.style.top=parseInt(el.siblingBelow.style.top)+dt+"px";}else el.style.top="0px";if(el.hg){if(this.tree.R){el.hg.style.left=(Ht+HD)+"px";}else{el.hg.style.left=(el.offsetWidth-(Ht+HD+HC))+"px";
}if(typeof(Hgi)!="number"){var lt=el.offsetHeight-(el.hi?0:Hw);if(Hgi=="bottom"){el.hg.style.top=Math.max((lt-Hl5-Ht),Ht)+"px";}else{el.hg.style.top=parseInt(Math.max((lt-Hl5),Ht)/2)+"px";}}el.hg.height=Hl5;el.hg.width=HC;
}}this.style.height=this.cs.style.height=parseInt(el.style.top)+(HM_IE5W?el.scrollHeight:el.offsetHeight)+((Hjt)?(Hu*2):0)+"px";}this.hm=this.style.height;if(HM_IE5M){if(this.bq){with(this.Fs.style){width=(parseInt(this.style.width)-(Hjt?(Hu*2):0))+"px";
height=(Hk2-(Hjt?0:(Hu*2)))+"px";}with(this.Fs.firstChild.style){top=((Hk2-(Hu*2)-H1)/2)+"px";left=((parseInt(this.Fs.style.width)-Hit)/2)+"px";}with(this.Ft.style){width=(parseInt(this.style.width)-(Hjt?(Hu*2):0))+"px";height=(Hk2-(Hjt?0:(Hu*2)))+"px";
}with(this.Ft.firstChild.style){top=((Hk2-(Hu*2)-H1)/2)+"px";left=((parseInt(this.Ft.style.width)-Hit)/2)+"px";}}if(window.HM_o_RolloverImages){for(var j=0;j<ek;j++){el=Items[j];var l1=el.getElementsByTagName("img");for(var i=0;i<l1.length;
i++){var l4=l1[i].id;if(typeof(l4)!="undefined")l4=l4.replace(Hl2,"$1");if(l4&&HM_o_RolloverImages[l4]){if(!el.lv)el.lv=[];l1[i].ed=l1[i].src;l1[i].ee=HM_o_RolloverImages[l4];el.lv[el.lv.length]=l1[i];}}}}}this.hn=true;if(iz)this.style.visibility="visible";
}
function HM_f_PopUp(eg,e){if(!HM_NS6)e=event;if(!Hat)return;if(Hax||!HWU())return;if(!Hay&&!Hbi){if(Hji)return;if(!HW5())return;}eg=eg.replace("elMenu",Hab);var eh=Hg.document.getElementById(eg);if(!eh&&!Hlh){if(Hay||!Hbi)return;
var lm=parseInt(eg.replace(Hab,""));if(isNaN(lm))return;eh=Hg.document.getElementById(Hab+lm);if(eh)return;eh=HXH(lm);}if(!eh)return;if(eh.tree.G){var ei=(HM_NS6)?e.target:e.srcElement;if(HM_NS6){while(ei.tagName==null){ei=ei.parentNode;
}}var ej="return HWe(event,'"+eg+"');";ei.onclick=new Function("event",ej);}else HWe(e,eg);}
function HWe(e,eg){if(!Hat||!Hbi)return true;if(Hax||!HWU())return true;if(HM_IE)e=event;var eh=Hg.document.getElementById(eg);if(!eh)return true;Hbg=eh;if(Hbg.tree.G&&e.type!="click")return true;var mouse_x_position,mouse_y_position;HWn();Hbg.cv=false;
Hbg.tree.db=Hbg;if(!H4){mouse_x_position=(HM_NS6)?e.pageX:(e.clientX+Hh.scrollLeft);mouse_y_position=(HM_NS6)?e.pageY:(e.clientY+Hh.scrollTop);
}else{switch(H5){case "top":mouse_x_position=(HM_NS6)?(e.pageX-window.pageXOffset)+Hg.pageXOffset:(e.clientX+Hh.scrollLeft);mouse_y_position=(HM_NS6)?Hg.pageYOffset:Hh.scrollTop;break;
case "bottom":mouse_x_position=(HM_NS6)?(e.pageX-window.pageXOffset)+Hg.pageXOffset:(e.clientX+Hh.scrollLeft);mouse_y_position=(HM_NS6)?Hg.pageYOffset+Hg.innerHeight:(Hh.scrollTop+Hh.clientHeight);break;
case "right":mouse_x_position=(HM_NS6)?(Hg.pageXOffset+Hg.innerWidth):(Hh.scrollLeft+Hh.clientWidth);mouse_y_position=(HM_NS6)?(e.pageY-window.pageYOffset)+Hg.pageYOffset:(e.clientY+Hh.scrollTop);break;
case "left":default:mouse_x_position=(HM_NS6)?Hg.pageXOffset:Hh.scrollLeft;mouse_y_position=(HM_NS6)?(e.pageY-window.pageYOffset)+Hg.pageYOffset:(e.clientY+Hh.scrollTop);break;}}if(HM_IE&&!HM_IE50W&&HXN())mouse_x_position-=(Hh.scrollWidth-Hh.clientWidth);
Hbg.mouseX=mouse_x_position;Hbg.mouseY=mouse_y_position;Hbg.ir=Hbg.xPos=(Hbg.tree.ca!=null)?eval(Hbg.tree.ca):mouse_x_position;Hbg.is=Hbg.yPos=(Hbg.tree.cb!=null)?eval(Hbg.tree.cb):mouse_y_position;if(HM_IE5M&&!Hbg.hn)Hbg.HXq(false);
if(Hbg.bq){Hbg.style.height=Hbg.hm;Hbg.HXl();}Hbg.HXc();Hbg.moveTo(Hbg.xPos,Hbg.yPos);Hbg.isOn=true;if((HM_IE5M)||(HM_NS6)){var en="if((HWU())&&(Hg)&&(Hg.document)){var Hkc=Hg.document.getElementById('"+Hbg.id+"');";
en+="if(Hkc&&Hkc.isOn&&Hkc.HXb)Hkc.HXb(true);}";setTimeout(en,10);}else{Hbg.HXb(true);}return false;}
function HWf(){if(Hax||!HWU())return;if(!this.tree.db){this.tree.db=this;}if(this.tree.db==this)HWn(this);this.isOn=true;Hbj=true;Hbg=this;if(HV&&(Hbg!=Hku))HWx();if(this.bc)clearTimeout(this.bc);this.bc=null;if(HF){if(this!=this.tree.db){var er=this.ct;
if(er.bn&&er.bn.dj)er.bn.HXP(false);var kk=this.cu;if(kk.dj)kk.HXP(true);er.bn=kk;}}}
function HWg(){if(Hax||!HWU())return;if(HM_IE&&Hg.event.srcElement.contains(Hg.event.toElement))return;this.isOn=false;Hbj=false;if(HO)window.status="";var Items=this.cs.childNodes;var ek=Items.length;var el;for(var i=0;i<ek;i++){el=Items[i];
clearTimeout(el.k4);el.k4=null;}if(!Hk3){clearTimeout(Hbd);Hbd=null;var en="var Hem=HW9('"+this.id+"');if(Hem&&Hem.HXd)Hem.HXd()";Hbd=setTimeout(en,Han);}}
function HWX(){if(this.tree.ch&&(this.menu==this.tree.cm)){this.child.xPos=parseInt(this.menu.style.left)+parseInt(this.style.left)+(this.index?Hu-Hw:0);
if((this.menu.cz||this.child.cz||this.child.cw)&&HR)this.child.xPos-=((this.child.offsetWidth-this.offsetWidth)-Hw-(this.hi?Hu:0));this.child.yPos=parseInt(this.menu.style.top)+this.menu.offsetHeight-(Hu);
}else{if(this.I==null){this.dw=parseInt(this.style.width);if(!Hjt)this.dw+=(parseInt(this.style.paddingLeft)+parseInt(this.style.paddingRight))+((this.menu.cw&&!this.hi)?Hw:0);if(!this.menu.cw||(this.menu.cw&&this.hi))this.dw+=Hu;
this.dx=(!this.menu.cw||(this.menu.cw&&this.index==0))?Hu:Hw;this.I=(parseInt((HK!=null)?(HK*this.dw):HI));}if(HM_IE5M){this.oL=parseInt(this.menu.style.left)-Ht;this.oL+=this.offsetLeft;this.oT=parseInt(this.menu.style.top)-Ht;this.oT+=this.offsetTop;
if(HV){this.oT+=this.menu.cs.top;if(H2&&this.menu.hd)this.oT+=Hk2;}}else{this.oL=(HM_IEpos)?parseInt(this.menu.style.left)+Hu:0;this.oL+=this.offsetLeft;this.oT=(HM_IEpos)?parseInt(this.menu.style.top):-Hu;this.oT+=this.offsetTop;
if(HV&&HM_IEpos){this.oT+=this.menu.cs.top;if(H2&&this.menu.hd)this.oT+=Hk2;}}if(this.tree.R){this.child.xPos=((this.oL-this.dx)+this.I)-this.child.offsetWidth;}else{this.child.xPos=(this.oL+this.dw)-this.I;}this.child.yPos=this.oT+HJ+Hu;
}if(!this.tree.ch||this.menu!=this.tree.cm){if(this.child.bq){this.child.style.height=this.child.hm;}this.child.HXc();}this.child.moveTo(this.child.xPos,this.child.yPos);}
function HWY(){this.child.HXq(false);this.HXr();var en="if((HWU())&&(Hg)&&(Hg.document)){var Hkd=Hg.document.getElementById('"+this.id+"');";en+="if(Hkd&&Hkd.HXt)Hkd.HXt();}";setTimeout(en,10);}
function HWZ(){if(Hay||Hjl||Hax||!HWU())return;Hjl=true;if(!this.child){Hbf=this.tree;Hkr=this.menu;Hkr.gx=this;this.child=HWc(this.jd);Hbf=this.tree;}Hjl=false;if(this.menu.style.visibility=="hidden")return;
if(HM_IE5M&&!this.child.hn){var en="if((HWU())&&(Hg)&&(Hg.document)){var Hke=Hg.document.getElementById('"+this.id+"');";en+="if(Hke&&Hke.HXs)Hke.HXs();}";setTimeout(en,10);}else{this.HXr();
if((HM_IE5M)||(HM_NS6)){var en="if((HWU())&&(Hg)&&(Hg.document)){var Hkf=Hg.document.getElementById('"+this.id+"');";en+="if(Hkf&&Hkf.HXt)Hkf.HXt();}";setTimeout(en,10);}else{this.HXt();}}}
function HX(){if((this.menu.bn==this)&&(this.menu.isOn)){this.menu.bm=true;this.menu.eo=this.child;this.child.HXb(true);}}
function HXO(on){if(this.lv){for(var i=0;i<this.lv.length;i++)this.lv[i].src=(on)?this.lv[i].ee:this.lv[i].ed;}if(this.ec)this.hg.src=(on)?this.ee:this.ed;with(this.style){backgroundColor=(on)?this.tree.s:this.tree.r;color=(on)?this.tree.q:this.tree.p;}}
function HWh(){if(Hax||!HWU())return;var ep=this.menu;if(HF){if(ep.bn&&ep.bn!=this&&ep.bn.dj){ep.bn.HXP(false);}}if(this.dj){this.HXP(true);}if(HO)window.status=this.dh;ep.bn=this;var Items=ep.cs.childNodes;var ek=Items.length;var el;for(var i=0;i<ek;
i++){el=Items[i];clearTimeout(el.k4);el.k4=null;}var en="if((HWU())&&(Hg)&&(Hg.document)){var Hkg=Hg.document.getElementById('"+this.id+"');";en+="if(Hkg&&Hkg.HXa)Hkg.HXa(true);}";this.k4=setTimeout(en,this.dn);}
function HWi(onover){if(Hax||!HWU())return;if(this.menu.bm){if(this.menu.eo==this.child&&this.menu.eo.bm)this.menu.eo.HXh(this);else this.menu.HXh(this);}if((this.G&&(onover!=true))||(this.dc&&!this.G))this.HX9();}
function HWj(){if(Hax||!HWU())return;if(this.dj){this.HXP(false);}}
function HWK(xPos,yPos){this.style.left=xPos+"px";this.style.top=yPos+"px";}
function HWk(on){if(!(this.tree.ce&&(this.tree.cm==this))){if(!this.cv||(this.cv&&this.tree.ce&&(this.tree.cm==this.ct))){var hq=(this.style.visibility=="visible");if((on&&!hq)||(!on&&hq))eval(on?this.tree.P:this.tree.Q);}if(on)this.style.zIndex=++Hbk;
this.style.visibility=(on)?"visible":"hidden";}if(HF&&this.bn&&this.bn.dj){this.bn.HXP(false);}this.bn=null;}
function HWl(){var et=(HM_IE||Hjg)?0:H7;var eu=(HM_IE)?Hh.scrollLeft:Hg.pageXOffset;var ev=(HM_IE)?Hh.scrollTop:Hg.pageYOffset;var ew=(HM_IE)?Hh.clientWidth:Hg.innerWidth;var ex=(HM_IE)?Hh.clientHeight:Hg.innerHeight;
if(HM_IE&&!HM_IE50W&&HXN())eu-=(Hh.scrollWidth-ew);var ey=(eu+ew)-et;var ez=(ev+ex)-et;var Fa=this.xPos;var Fb=Fa+this.offsetWidth;if((this.yPos<ev)&&(this.cv||this.tree.lf))this.yPos=ev;var Fc=this.yPos+parseInt(this.hm);Fc+=(Hjt)?0:(Hu*2);
if(this.cv){var Fd=this.cu.oL;}if((Fb>ey)&&(this.cv||this.tree.le)){if(this.cv){this.xPos=((Fd-this.cu.dx)+this.cu.I)-this.offsetWidth;}else{var dif=Fb-ey;this.xPos-=dif;}this.xPos=Math.max(0,this.xPos);}if((Fc>ez)&&(this.cv||this.tree.lf)){var dif=Fc-ez;
this.yPos-=dif;Fc=ez;}if((Fa<eu)&&(this.cv||this.tree.le)){if(this.cv){this.xPos=(Fd+this.cu.dw)-this.cu.I;Fb=this.xPos+this.offsetWidth;if(Fb>ey)this.xPos-=(Fb-ey);
}else{this.xPos=0}}if(HV){if(((this.yPos<ev)&&(this.cv||this.tree.lf))||(Fc>ez)){var kl=(Hjt)?0:(Hu*2);if(this.yPos<ev){if(!H4||H5!="top"){this.yPos=(ev+et);var Fj=(et*2);}else{this.yPos=ev;var Fj=et;}this.style.height=(Math.min((parseInt(this.hm)),
(Math.max(ex,((Hk2*2)+H3))))-Fj-kl)+"px";}else{this.style.height=(Math.min((parseInt(this.hm)),(Math.max((ez-this.yPos),((Hk2*2)+H3))))-kl)+"px";}if(!this.bq)this.HXj();this.HXl();
}else if(this.bq){if(!HM_IE5W){if(parseInt(this.hm)<ex)this.style.height=this.hm;}this.HXl();}}}
function HWm(){if(Hax||!HWU())return;if(this.dh.indexOf("javascript:")!=-1)eval(this.dh);else{HWn();Hg.location.href=this.dh;}}
function HM_f_PopDown(eg){if(!Hat||!Hbi)return;if(Hax||!HWU())return;eg=eg.replace("elMenu",Hab);var Fe=Hg.document.getElementById(eg);if(!Fe)return;if(Hbj&&(Hbg==Fe))return;Fe.isOn=false;if(!Hk3)Fe.HXe();}
function HWn(Ff){clearTimeout(Hbd);Hbd=null;for(var i=0;i<Haz;i++){var ba=Hbb[i].tree.db;if(ba==Ff)continue;ba.isOn=false;if(ba.bm)ba.HXh();ba.HXb(false);}}
function HXE(){clearTimeout(Hbd);Hbd=null;for(var i=0;i<Haz;i++){var ba=Hbb[i].tree.db;ba.isOn=false;if(ba.bm)ba.HXh();ba.style.visibility="hidden";}}
function HWo(){Hbd=null;if(Hax||!HWU())return;if(Hbj)return;if(this.bm)this.HXh();this.HXg();}
function HWp(){var en="var HFg=HW9('"+this.id+"');if(HFg&&HFg.HXf)HFg.HXf()";(Hk3)?this.HXf():(this.bc=setTimeout(en,Hbw));}
function HWq(){if(Hax||!HWU())return;this.bc=null;if(!this.isOn&&!Hbj)this.HXb(false);}
function HWr(){var eh=this;while(eh.cv){eh.HXb(false);eh.ct.isOn=false;eh.ct.bm=false;eh=eh.ct;}eh.HXe();}
function HWs(Fh,forced){var eh=this.eo;while(eh.bm){eh.eo.HXb(false);eh.bm=false;eh=eh.eo;}if(forced||((Fh&&(!Fh.dc||this.eo!=Fh.child))||(!Fh&&!this.isOn))){this.eo.HXb(false);this.bm=false;}}
function HWL(){return false}
function HWt(){if(Hax||!HWU())return;if(!Hbj&&Hbg!=null&&!Hbg.isOn)HWn();}
function HWv(){var Fm=Hg.document.createElement("DIV");with(Fm.style){position="absolute";top=-(Hu)+"px";left="0px";width=(parseInt(this.style.width)-((Hjt)?(Hu*2):0))+"px";height=(Hk2-((Hjt)?0:(Hu*2)))+"px";visibility="hidden";backgroundColor=Hk1;
textAlign="center";zIndex=10000;var km=(Hu+"px "+this.tree.v+" "+Hhf);borderBottom=km;borderTop=km;}var kh=Hg.document.createElement("IMG");with(kh.style){position="absolute";top=((Hk2-(Hu*2)-H1)/2)+"px";visibility="inherit";
left=((parseInt(Fm.style.width)-Hit)/2)+"px";}Fm.appendChild(kh);var kn=Fm.cloneNode(true);if(Hky)kn.firstChild.src=Hky;if(Hkz)Fm.firstChild.src=Hkz;this.appendChild(Fm);this.appendChild(kn);Fm.menu=this;this.Fs=Fm;kn.menu=this;this.Ft=kn;
if(Hkw){if(Hjh){this.Fs.onmouseenter=HXA;this.Fs.onmouseleave=HWx;this.Ft.onmouseenter=HXB;this.Ft.onmouseleave=HWx;}else{this.Fs.onmouseover=HXA;this.Fs.onmouseout=HWx;this.Ft.onmouseover=HXB;this.Ft.onmouseout=HWx;}}else{this.Fs.onmousedown=HXA;
this.Ft.onmousedown=HXB;}this.bq=true;}
function HXA(){Hku=this.menu;return this.menu.HXk(true);}
function HXB(){Hku=this.menu;return this.menu.HXk(false);}
function HWw(up){HWx();if(Hax||!HWU())return;if(this.bm)this.HXh(false,true);if(!Hkw)Hg.document.onmouseup=HWx;Hbl=setInterval("HWz("+up+",10)",Hkv);return false;}
function HWx(){clearInterval(Hbl);Hbl=null;}
function HWz(up,incr){if(Hax||!HWU()){HWx();return;}var Fu=Hku.cs;if(up){Fu.top+=incr;}else{Fu.top-=incr;}Hku.HXl();}
function HWA(){var Fu=this.cs;var Fv=parseInt(this.style.height);var Fw=parseInt(Fu.style.height);var Fx=Fv-Fw;var Fy=H2?(Hk2-Hu):0;if(!Fx){this.Ft.style.visibility="hidden";this.Fs.style.visibility="hidden";this.hd=false;Fu.top=0;Fu.style.top=Fu.top+"px";
return;}if(H2)Fx-=(Fy*2);if(Fu.top<=(Fx)){Fu.top=Fx;HWx();this.Ft.style.top=(Fv-((Hjt)?(Hu):-(Hu))-Hk2)+"px";if(!H2)this.Ft.style.visibility="hidden";}else{this.Ft.style.top=(Fv-((Hjt)?(Hu):-(Hu))-Hk2)+"px";this.Ft.style.visibility="inherit";
if(H2){this.Fs.style.visibility="inherit";this.hd=true;}}if(Fu.top>=0){Fu.top=0;HWx();if(!H2)this.Fs.style.visibility="hidden";}else{this.Fs.style.visibility="inherit";if(H2){this.Ft.style.visibility="inherit";this.hd=true;}}Fu.style.top=(Fu.top+Fy)+"px";}
function HX1(){if(!this.bq)return;var ScrollUp=(Hg.event.wheelDelta==120);Hku=this;HWz(ScrollUp,this.bn.offsetHeight);return false;}
function HX2(e){if(HM_IE){var ga=e.description;}else{var ga=(Hjf)?"Access Denied":(typeof(e)=="object")?e.message:e;}var gb=false;for(var i=0;i<Hav.length;i++){if(ga.toLowerCase().indexOf(Hav[i])!=-1){gb=true;break;}}return gb;}
function HWN(){if(Hax||!HWU())return HXx();var mouse_x_position,mouse_y_position;for(var i=0;i<Haz;i++){var ba=Hbb[i].tree.db;if(ba.style.visibility=="visible"){ba.ip=ba.xPos;ba.iq=ba.yPos;mouse_x_position=ba.mouseX;mouse_y_position=ba.mouseY;
ba.xPos=eval(ba.tree.ca);ba.yPos=eval(ba.tree.cb);if(ba.xPos==null)ba.xPos=ba.ir;if(ba.yPos==null)ba.yPos=ba.is;if(!ba.tree.ce){if(ba.bq)ba.HXl();ba.style.height=ba.cs.style.height;ba.HXc();}ba.moveTo(ba.xPos,ba.yPos);var eh=ba;while(eh.bm){ko=eh;eh=eh.eo;
el=eh.cu;el.HX9();}}}return HXx();}
function HX3(){Hjj=true;clearTimeout(Hjk);Hjk=null;if(!Hax){if(HM_NS6)HXE();Hax=true;}HWS();if(H4&&HM_IE5M)return HXz();if(Hjm){if(Hld){var jv=parent.document.getElementsByName(H6)[0];jv.removeEventListener('load',HW5,false);
}else if(parent.HM_UseFrameLoad){parent.HM_f_LoadMenus=null;}}if(window.Hbt)Hbt.onload=null;return HXz();}
function HWO(){Hax=true;if((typeof(window.Hjj)!="boolean")||(Hjj)){if(typeof(window.HXy)=="function")HXy();return;}if(HM_NS6)HXE();HW4();HXy();if(!Hji){if(HM_IE||Hjg)HX4();else HX5();}}
function HX4(){clearTimeout(Hjk);Hjk=null;Hjk=setTimeout("HX7()",Hgj);}
function HX5(){clearTimeout(Hjk);Hjk=null;Hjk=setTimeout("HX6()",Hgj);}
function HXF(){try{if((Hg)&&(typeof(Hg.Hlc)=="boolean")&&(Hg.Hlc))return true;else return false;}catch(e){return false;}}
function HX6(){if((typeof(window.Hjj)!="boolean")||(Hjj))return true;try{if((typeof(Hg.document)!="object")||(typeof(Hg.document.body)=="undefined")||(Hg.document.body==null)||(HXF())){clearTimeout(Hjk);Hjk=null;Hjk=setTimeout("HX6()",Hgj);
}else{var kp=Hg.document.body;HW5();}}catch(e){Hax=false;if(HX2(e))return true;}}
function HX7(){if((typeof(window.Hjj)!="boolean")||(Hjj))return true;try{var kq=typeof(Hg.document);var kq=Hg.document.readyState;}catch(e){Hax=false;return true;
}if(typeof(Hg.document)!="unknown"){if((Hg.document.readyState!="complete")||(HXF())){clearTimeout(Hjk);Hjk=null;Hjk=setTimeout("HX7()",Hgj);}else HW5();}else Hax=false;}
Hbt=(H4)?(HM_NS6)?parent:parent.document.body:window;
if(Hbt.Hlb){Hbt=(HM_NS6)?window:window.document.body;}
else Hbt.Hlb=true;HXu=(Hbt.onload)?Hbt.onload:HXD;Hbt.onload=function(){setTimeout("HW5()",10)};HXz=(window.onunload)?window.onunload:HXD;window.onunload=HX3;popUp=HM_f_PopUp;popDown=HM_f_PopDown;
