function showhide(b,o){
var ob = o==null?findObj("divNoutati"):findObj(o);
if(ob==null)return;
if(o==null)ob.style.visibility=b?"visible":"hidden";
else ob.style.visibility=b?"visible":"hidden";
}
function findObj(theObj, theDoc){var p, i, foundObj;if(!theDoc) theDoc = document;if( (p = theObj.indexOf("?")) > 0 && parent.frames.length){theDoc = parent.frames[theObj.substring(p+1)].document;theObj = theObj.substring(0,p);}if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];for (i=0; !foundObj && i < theDoc.forms.length; i++)foundObj = theDoc.forms[i][theObj];for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)foundObj = findObj(theObj,theDoc.layers[i].document);if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);return foundObj;}
function Browser(){var ua=navigator.userAgent;if(document.layers)this.isNS=true;else if(ua.indexOf("Firefox")!=-1)this.isFX=true;else if(ua.indexOf("Opera")!=-1)this.isOP=true;else if(ua.indexOf("Netscape")!=-1)this.isNS6 = true;else this.isIE=true;}
var br = new Browser();
function centerDiv(id){
var bw,o,x,l;
if(br.isNS6)bw=window.innerWidth-2;
if(br.isFX)bw=window.innerWidth-8;
if(br.isOP)bw=window.innerWidth;
if(br.isIE)bw=document.body.offsetWidth-20;
o=findObj(id).style;
if(o.xl==null)o.xl=o.left;
l=parseInt(o.xl);
x=(bw-768)/2+l;
if(x<l)x=l;
o.left=x;
}
function centerDIVS(){
centerDiv("divNoutati");
centerDiv("divLogin");
}
function swap(o,url){
if(url==null)o.src=o.src2;
else{o.src2=o.src;o.src=lhr+url;}
}