eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('6(!4){k 4={}}4.V=0(){5 3.14};4.U=0(){5 3.O};4.L=0(){5 3.J};4.H=0(){5 3.o};4.1a=0(){5 3.17};4.13=0(){5 3.11};4.T=0(){5 3.P};4.M=0(){5 3.u};4.K=0(a){5(3.u.I(a)!=-1)};4.G=0(){5 3.v};4.D=0(a){3.v=a};4.B=0(){5 3.9};4.18=0(a){3.9=a};4.16=0(a,b){6(z 3.9!="w"){3.9={}}3.9[a]=b};4.10=0(a){6(z 3.9=="w"){5 3.9[a]}5 Z};0 R(a,b,c){6(!b){b=h.n}6(!c){c=h.l}k d=t.s((h.n-b)/2);k e=t.s((h.l-c)/2);k f=7.N(a.m(\'8\'),"Q","F="+e+", S="+d+", n="+b+", l="+c+", E=j, C=j, W=j, X=j");f.Y();5 r}0 19(a){6(7.A){7.A()}q 6(a){7.i.8=a.m(\'8\')}6(a){5 r}}0 15(a){6(7.p&&7.p.x){7.p.x(g.o,g.i.8,\'\')}q 6(g.12&&7.y){7.y.1b(g.i.8,g.o)}q 6(a){7.i.8=a.m(\'8\')}6(a){5 r}}',62,74,'function|||this|pageHandler|return|if|window|href|marker|||||||document|screen|location|yes|var|height|getAttribute|width|title|sidebar|else|false|floor|Math|tags|topic|object|addPanel|external|typeof|print|getMarker|toolbar|setTopic|menubar|top|getTopic|getTitle|indexOf|lang|hasTag|getLang|getTags|open|ref|thread|popup|accessiblePopup|left|getThread|getRef|getId|resizable|scrollbars|focus|null|getMarkerParameter|keywords|all|getKeywords|id|accessibleAddToFavorite|setMarkerParameter|author|setMarker|accessiblePrint|getAuthor|AddFavorite'.split('|'),0,{}))
function getFieldValueByName (aFieldName)
{
    var value = '';

    var field = $("[name='formParam[" + aFieldName + "]']");

    if (field && field.length)
    {
        value = field[0].value;
    }

    return value;
}

/**
 * @author intbonjf 2007-05-29
 * Use this function to register a function to be executed when the page has
 * loaded.
 * This works on most of the recent JavaScript-enabled browsers, from Firefox2
 * to... IE5 for Mac :)
 */
function addLoadListener(func)
{
	if (window.addEventListener)
	{
	  window.addEventListener("load", func, false);
	}
	else if (document.addEventListener)
	{
	  document.addEventListener("load", func, false);
	}
	else if (window.attachEvent)
	{
	  window.attachEvent("onload", func);
	}
	else if (typeof window.onload != "function")
	{
	  window.onload = func;
	}
	else
	{
	  var oldonload = window.onload;
	  window.onload = function() {
	     oldonload();
	     func();
	  };
	}
}

/** SPECIFIC */
startList = function() {
	if(document.getElementById) {
		navRoot = document.getElementById("nav");
		
		if(navRoot)
		{
			for(i=0; i<navRoot.childNodes.length; i++)
			{
				node = navRoot.childNodes[i];
				if(node.nodeName=="LI") {
					node.style.zIndex = 2000-i;
					node.onmouseover=function() {
						if(this.className == "" || this.className == null || this.className == "undefined" ) {
							this.className+="over";
						} else {
							this.className+=" over";
						}
					}
					node.onmouseout=function() {
						this.className=this.className.replace("over", "");
					}
					/*
					node.onkeypress=function() {
						this.className+="over";
					}
					*/
				}
			}
		}
	}
}
// intportg - 08/10/2007 - do not remove other onload function.
//window.onload=startList;
addLoadListener(startList);
