var browserName = navigator.appName;
var browserAppVersion = navigator.appVersion;
//var pageOn;

//select image based on random number for homepage banner photo
bannerPhoto = Math.round((Math.random() * 4 + 0.5));


/* 
makeMenus();


function makeMenus(){

	level = "ip";
	if (pageOn != "") {
		if ((pageOn == "index.shtml") || (pageOn == "Index.shtml")) level = "hp";
	}
	if (pageOn == "") level = "hp"
	
	if (level == "hp") {
		menuHeight = "129";
		imgState = "ON";
	} else {
		menuHeight = "124";
		imgState ="HOVER";
	}

	
	//each loop creates one complete menu	
	for (z=0; z<arrMenu.length; z++) {
		menu = arrMenu[z];
		menuItem = menu[0];
		
		//build the outer shell
 		document.write("<div id=\"" + menuItem[0] + "Closer\" class=\"layerCloser\" onMouseOver=\"MM_swapImgRestore()\">"); 
		document.write("<a href=\"#\" onMouseOver=\"P7_autoLayers(0)\"><img src=\"http://www.clinical-labs.org/images/spacer.gif\" width=200 height=300 border=0 alt=\"\"></a>");
		document.write("</div>");
		document.write("<div id=\"" + menuItem[0] + "Menu\" class=\"layerMenu\" onMouseOver=\"MM_swapImage('" + menuItem[0] + "','','http://www.clinical-labs.org/images/nav_" + level + "_" + menuItem[0] + imgState + ".gif',1)\">");
		document.write("<table width=145 height=" + menuHeight + " border=0 cellspacing=0 cellpadding=0><tr><td valign=middle class=\"bgDarkBlue\">");
		document.write("<table width=100% border=0 cellpadding=0 cellspacing=0><tr><td>");
		document.write("<span id=\"nav\">"); 
		for (x=1; x<menu.length; x++) {
			currMenuItem = menu[x];
			if (currMenuItem.length == 3){
				document.write("<table width=145 border=0 cellspacing=0 cellpadding=0><tr><td>");
				document.write("<a href=\"" + currMenuItem[1] + "\">" + currMenuItem[0] + "</a>");
				document.write("</td></tr></table>");
			}
		}
		document.write("</span>");
		document.write("</td></tr></table>");
		document.write("</td><td valign=top>");
		document.write("<img src=\"http://www.clinical-labs.org/images/flyout_rightside.gif\" width=7 height=" + menuHeight + " border=0 alt=\"\">");
		document.write("</td></tr></table>");
		document.write("</div>");
	}
}
*/
function makeSubMenu(pageOn, subPageOn) {
	for (z=0; z<arrMenu.length; z++) {
		subMenu = arrMenu[z];
		menuItem = subMenu[0];
		if (menuItem[0] == pageOn){
			document.write("<table border=0 cellspacing=0 cellpadding=0><tr><td>");
			makeSubMenuHdr(pageOn, subPageOn);
			document.write("</td></tr><tr>");
			document.write("<td class=\"subMenuBox\">");
			document.write("<img src=\"/images/spacer.gif\" width=1 height=8 alt=\"\">");
			for (x=1; x<subMenu.length; x++) {
				style = "";
				currMenuItem = subMenu[x];
				if (currMenuItem.length == 3) {
					if ((subPageOn == currMenuItem[2])||((subPage == currMenuItem[2])&&(subPageOn == ""))) {
						style = "ON";
					}
					document.write("<table width=165 border=0 cellspacing=0 cellpadding=0><tr><td>");
					document.write("<a href=\"" + currMenuItem[1] + "\" class=\"subnav" + style + "\">" + currMenuItem[0] + "</a>");
					document.write("</td></tr></table>");
					style = "";
				}
			}
			document.write("<br>");
			document.write("</td></tr></table>");
		}
	}
}

function makeSubMenuHdr(pageOn) {
	document.write("<img src=\"/images/bar_" + pageOn + ".gif\" alt=\"" + pageOn + "\" width=\"165\" height=\"31\" onMouseOver=\"P7_autoLayers(0)\">");
}

function makeLevel3Menu(pageOn, subPageOn) {
	if ((pageOn == "issues") && (subPageOn != "") && (subPage != "archive")) {
		for (z=0; z<arrActionMenu.length; z++) {
			level3Menu = arrActionMenu[z];
			menuItem = level3Menu[0];
			if (menuItem[0] == subPageOn) {
				document.write("<table align=\"right\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td rowspan=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>");
				document.write("<table width=\"222\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"boxShell\"><tr>");
				document.write("<td><img src=\"/images/bar_actions.gif\" alt=\"Actions\" width=\"222\" height=\"24\"></td>");
				document.write("</tr><tr><td>");
				for (x=1; x<level3Menu.length; x++) {
					style = "";
					currMenuItem = level3Menu[x];
					if (currMenuItem.length == 3) {
						if (subPage == currMenuItem[2]) {
							style = "ON";
						}
						document.write("<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td class=\"actionLink" + style + "\">");
						document.write("<a href=\"" + currMenuItem[1] + "\" class=\"actionLink" + style + "\">" + currMenuItem[0] + "</a>");
						document.write("</td></tr></table>");
						style = "";
					}
				}
				document.write("</td></tr></table></td></tr><tr><td>&nbsp;</td></tr></table>");
			}
		}
	}
}
/*
function makeBannerPhoto(pageOn) {
	if ((pageOn == "contact.php") || (pageOn == "sitemap.shtml") || (pageOn == "join.shtml")){
		pageOn = "generic";
	}
	document.write("<img src=\"/images/IPphoto_" + pageOn + ".jpg\" alt=\"\" width=\"230\" height=\"124\">");
}
*/
function makeSiteMap(pageOn) {
	for (z=0; z<arrMenu.length; z++) {
		menu = arrMenu[z];
		menuItem = menu[0];
		document.write("<ul class=\"sitemap\">");
		if (menuItem[0] == pageOn) {
			for (x=1; x<menu.length; x++) {
				currMenuItem = menu[x];
				if (currMenuItem.length == 3) {
					document.write("<li class=\"sitemapLinks\"><a href=\"" + currMenuItem[1] + "\">" + currMenuItem[0] + "</a></li>");
				} else if (currMenuItem.length == 2) {
					document.write("<li class=\"sitemapLinks\"><a href=\"" + currMenuItem[1] + "\">" + currMenuItem[0] + "</a></li>");
				} else if (currMenuItem.length == 4) {
					document.write("<ul><li class=\"sitemapLinks\"><a href=\"" + currMenuItem[1] + "\">" + currMenuItem[0] + "</a></li></ul>");
				}
			}
		}
		document.write("</ul>");
	}
}

	
/* DELETE THIS COPY 
function makeSiteTitle(pageTitle, pageOn) {
document.write("<div id=\"main\" align=\"left\"><tr><td align=\"left\">");

	for (var zup=0; zup<arrMenu.length; zup++) {
		menu = arrMenu[zup];
		menuItem = menu[0];
		
		menuD = arrMenu[zup];
		menuD2 = menuDetect[1];
		
		if (menuItem[0] == pageTitle) {
			   document.write("<a class=\"stretchtoggle secondLevT\" id=\"" + menuItem[0] + "\">" + menuItem[0] + "</a>");
			   break;
				} 
		else if  ((menuItem[0] != pageTitle) && (zup==(arrMenu.length-1))) 
				{
			   document.write("<a class=\"stretchtoggle\">" + menuItem[0] + "</a>");
			   break;
				}
			}
		} */
		
function makeSiteTitle(pageTitle, thispageOn) {
document.write("<div id=\"main\" align=\"left\"><tr><td align=\"left\">");

	for (var zup=0; zup<arrMenu.length; zup++) {
		
		menu = arrMenu[zup];
		menuItem = menu[0];
	    menuDetect = menu[1];

		if (menuDetect[0] == pageTitle && menu[1] == thispageOn)
		       {
			   document.write("<a class=\"stretchtoggle secondLevT\" id=\"" + menuItem[0] + "\">" + menuItem[0] + "</a>");
			   break;
				} 
		else if (menuDetect[0] == pageTitle && menu[1] != thispageOn) 
				{
			    document.write("<a class=\"stretchtoggle\" id=\"" + menuItem[0] + "\">" + menuItem[0] + "</a>");
			   break;
				}
			}
		}
		

function makeSiteMTitle(pageOn) {

	for (z=0; z<arrMenu.length; z++) {
		menu = arrMenu[z];
		menuItem = menu[0];
	    
		document.write(menuItem[0]);
			   break;
				} 

		}
	
	
	
	
function makeSiteMap2Nav(page_On, subPage, thirdLev, pageOn2) {
	
document.write("</td></tr><tr><td align=\"left\" bgcolor=\"#2853AC\"><div class=\"stretcher\">");
			   
	for (z=0; z<arrMenu.length; z++) {
		menu = arrMenu[z];
		menuItem = menu[0];
	
		if (menuItem[0] == page_On) {
				
			for (x=1; x<menu.length; x++) {
				currMenuItem = menu[x];
				
				if (currMenuItem.length == 3 && menu[1] == pageOn2 && currMenuItem[2]==subPage) { //THIS IS FOR THE MAIN NAV 
		
					
						document.write("<a style=\"background: #DDDDDD;\" href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
						/*this rollover state needs to be cleaned up*/
				
				} else if (currMenuItem.length == 3 && currMenuItem[2]==subPage) { //THIS IS FOR 2nd Level Nav
					document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
	
	
				} else if (currMenuItem.length == 3 && currMenuItem[2] !=subPage) { //THIS IS FOR 2nd Level Nav
					document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
	
				} else if (currMenuItem.length == 2) { //THIS IS FOR 2nd Level Nav
					document.write("<a class=\"stretchtoggle secondLevNav\">&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
               
			    } else if (currMenuItem.length == 4 && currMenuItem[3]=="BEGIN") {     // BEGINS THE 3RD LEVEL and SETS UP THE TITLE
					document.write("<div class=\"stretcher\">");
						
					
			       		    if (currMenuItem[2]==thirdLev) {  //3rd level nav rollover
                    document.write("<a style=\"background: #DDDDDD;\" href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");

							} else if (currMenuItem[2]!=thirdLev) { //3rd level nav rollover
                    document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");
							}
					            
								// FILLS IN THE THE 3RD LEVEL 
					
				} else if (currMenuItem.length == 4 && currMenuItem[2]==thirdLev && currMenuItem[3]=="3") {  //3rd level nav rollover
                    document.write("<a style=\"background: #DDDDDD;\" href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");

				} else if (currMenuItem.length == 4 && currMenuItem[2]!=thirdLev && currMenuItem[3]=="3") { //3rd level nav rollover
                    document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");
					
					
				
					
				} else if (currMenuItem.length == 4 && currMenuItem[3]=="END") { // ENDS THE 3RD LEVEL and SETS UP THE TITLE
			    
				  		    if (currMenuItem[2]==thirdLev) {  //3rd level nav rollover
                   		    document.write("<a style=\"background: #DDDDDD;\" href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");

					    	} else if (currMenuItem[2]!=thirdLev) { //3rd level nav rollover
                           document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/bulletBlue.gif\" width=\"8\" height=\"6\" border=\"0\" />" + currMenuItem[0] + "</a>");
							}

			      	document.write("</div>");
				 
				 
				 
				 
				 
				} 
				

				
				
			}
		}
	
	}document.write("</div></div></td></tr></div>");
}





/*
BACKUPS

function makeSiteMap2Nav(pageOn) {
	for (z=0; z<arrMenu.length; z++) {
		menu = arrMenu[z];
		menuItem = menu[0];
		//document.write("<a href=\"#\">&nbsp;&nbsp;");
		if (menuItem[0] == pageOn) {
			for (x=2; x<menu.length; x++) {
				currMenuItem = menu[x];
				if (currMenuItem.length == 3) {
					document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
				} else if (currMenuItem.length == 2) {
					//document.write(currMenuItem[1] + currMenuItem[0]);
					document.write("<a href=\"" + currMenuItem[1] + "\">&nbsp;&nbsp;&nbsp;&nbsp;" + currMenuItem[0] + "</a>");
				}
			}
		}
		//document.write("</a>");
	}
}

*/

function popUp(url) {
	genPopUp = window.open("","pop","toolbar=no,location=no,scrollbars=yes,directories=no,status=yes,menubar=no,resizable=yes,width=500,height=350");
	genPopUp.location.href = url;
	if (genPopUp.opener == null) genPopUp.opener = window;
	genPopUp.opener.name = "opener";
}

function printerFriendly() {
	genPopUp = window.open("","printer","toolbar=no,location=no,scrollbars=yes,directories=no,status=yes,menubar=yes,resizable=yes,width=760,height=600");
	genPopUp.location.href = "print.shtml";
	if (genPopUp.opener == null) genPopUp.opener = window;
	genPopUp.opener.name = "opener";
}

function newWindow(url) {
	genPopUp = window.open("","newWindow","toolbar=yes,location=yes,scrollbars=yes,directories=yes,status=yes,menubar=yes,resizable=yes,width=800,height=600");
	genPopUp.location.href = url;
}

function MM_reloadPage(init) {  //Updated by PVII. 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_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 P7_autoLayers() { //v1.2 by PVII
 var g,b,k,f,args=P7_autoLayers.arguments;
 var a = parseInt(args[0]);if(isNaN(a))a=0;
 if(!document.p7setc) {p7c=new Array();document.p7setc=true;
  for (var u=0;u<10;u++) {p7c[u] = new Array();}}
 for(k=0; k<p7c[a].length; k++) {
  if((g=MM_findObj(p7c[a][k]))!=null) {
   b=(document.layers)?g:g.style;b.visibility="hidden";}}
 for(k=1; k<args.length; k++) {
  if((g=MM_findObj(args[k])) != null) {
   b=(document.layers)?g:g.style;b.visibility="visible";f=false;
   for(j=0;j<p7c[a].length;j++) {
    if(args[k]==p7c[a][j]) {f=true;}}
  if(!f) {p7c[a][p7c[a].length++]=args[k];}}}
}

function P7_ReDoIt() { //v1.2 by PVII
 if(document.layers) {
	MM_reloadPage(false);
	}
}

function P7_Snap() { //v2.61 by PVII
  var x,y,ox,bx,oy,p,tx,a,b,k,d,da,e,el,args=P7_Snap.arguments;a=parseInt(a);
  for (k=0; k<(args.length-3); k+=4)
   if ((g=MM_findObj(args[k]))!=null) {
    el=eval(MM_findObj(args[k+1]));
    a=parseInt(args[k+2]);b=parseInt(args[k+3]);
    x=0;y=0;ox=0;oy=0;p="";tx=1;da="document.all['"+args[k]+"']";
    if(document.getElementById) {
     d="document.getElementsByName('"+args[k]+"')[0]";
     if(!eval(d)) {d="document.getElementById('"+args[k]+"')";if(!eval(d)) {d=da;}}
    }else if(document.all) {d=da;} 
    if (document.all || document.getElementById) {
     while (tx==1) {p+=".offsetParent";
      if(eval(d+p)) {x+=parseInt(eval(d+p+".offsetLeft"));y+=parseInt(eval(d+p+".offsetTop"));
      }else{tx=0;}}
     ox=parseInt(g.offsetLeft);oy=parseInt(g.offsetTop);var tw=x+ox+y+oy;
     if(tw==0 || (navigator.appVersion.indexOf("MSIE 4")>-1 && navigator.appVersion.indexOf("Mac")>-1)) {
      ox=0;oy=0;if(g.style.left){x=parseInt(g.style.left);y=parseInt(g.style.top);
      }else{var w1=parseInt(el.style.width);bx=(a<0)?-5-w1:-10;
      a=(Math.abs(a)<1000)?0:a;b=(Math.abs(b)<1000)?0:b;
      x=document.body.scrollLeft + event.clientX + bx;
      y=document.body.scrollTop + event.clientY;}}
   }else if (document.layers) {x=g.x;y=g.y;var q0=document.layers,dd="";
    for(var s=0;s<q0.length;s++) {dd='document.'+q0[s].name;
     if(eval(dd+'.document.'+args[k])) {x+=eval(dd+'.left');y+=eval(dd+'.top');break;}}}
   if(el) {e=(document.layers)?el:el.style;
   var xx=parseInt(x+ox+a),yy=parseInt(y+oy+b);
   if(navigator.appName=="Netscape" && parseInt(navigator.appVersion)>4){xx+="px";yy+="px";}
   if(navigator.appVersion.indexOf("MSIE 5")>-1 && navigator.appVersion.indexOf("Mac")>-1){
    xx+=parseInt(document.body.leftMargin);yy+=parseInt(document.body.topMargin);
    xx+="px";yy+="px";}e.left=xx;e.top=yy;}}
}

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 goodbye(){
	window.close();
}