/*******************************************************Author:					Tim MillerDate:					5/3/2005Filename:				getNrModule.jsDescription:			This file gets the current netReturns module from the page URL and 						changes the source of an image based on the current module.*******************************************************/function getImage(){	locationStr = document.location.pathname.toString();		a = locationStr.split("/");	aPos = a.length-2;		document.getElementById("headerImg").src = "/Client_Files/floydmedical/contentheader_" + a[aPos] + ".gif";}
