// Check for 4+ browser and collect mouse position...if (parseInt(navigator.appVersion) < 4) {// Need to put the correct url here!!window.location='./browser.htm';// window.document.location='../tools/browser.cfm';}else{	var layer_right=0var layer_left=0;var nscp = (navigator.appName == "Netscape");	if (nscp)	{	document.captureEvents(Event.MOUSEMOVE);		document.captureEvents(Event.RESIZE);	}	document.onmousemove = checkIt;	window.onResize = winResize;}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_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;}function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}}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_showHideLayers() { //v3.0 var i,p,v,obj,args=MM_showHideLayers.arguments; for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2]; if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; } obj.visibility=v; }}function winResize() {if(parseInt(navigator.appVersion) > 3) {document.location=document.location; }}function openWin(thisFile,thisTitle,theseProps) { ThisWin=window.open(thisFile,thisTitle,theseProps); ThisWin.focus();}function MM_jumpMenu(targ,selObj,restore){ //v3.0  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  if (restore) selObj.selectedIndex=0;}function Ci_GetLayerPositions(ThisLayer) { if (document.layers) { layer_left=document.layers[ThisLayer].left; layer_top=document.layers[ThisLayer].top; layer_width=document.layers[ThisLayer].document.width; }else if (document.all) { layer_left=document.all[ThisLayer].style.posLeft; layer_top=document.all[ThisLayer].style.posTop; layer_width=document.all[ThisLayer].clientWidth; }else if (document.getElementById) { 	layer_left=parseInt(document.getElementById(ThisLayer).style.left); layer_top=parseInt(document.getElementById(ThisLayer).style.top); layer_width=parseInt(document.getElementById(ThisLayer).style.width); } layer_right=layer_left +layer_width;}function checkIt(evt){	x1 = (nscp) ? evt.pageX : event.clientX;	y1 = (nscp) ? evt.pageY : event.clientY; if ((x1 > (layer_right+10)) || (x1< (layer_left-30)) || (y1 > 150) || (y1 < 0))	{	hideAllLayers();}}function getWidthOffset() {if (window.innerWidth == null) { doc_width = document.body.clientWidth; acc_doc_width=((document.body.scroll=="yes")&&(doc_width>746))?document.body.clientWidth + 16:document.body.clientWidth; //if(doc_width<=762){alert(doc_width)} Holder=(acc_doc_width<=762)?1:Math.round((acc_doc_width-762.1)/2) } else { doc_width=(document.width>window.innerWidth)?document.width - 16:document.width; Holder=(doc_width<=762)?1:Math.round((doc_width-761.1)/2) }return Holder}