	<!-- Begin
	/* This script and many more are available free online at
	The JavaScript Source!! http://javascript.internet.com
	Created by: Ultimater :: http://ultimiacian.tripod.com/
	Add this snippet to the very beginning of your script. */

	if(!document.getElementById){
	if(document.all)
	document.getElementById=function(){
		if(typeof document.all[arguments[0]]!="undefined")
		return document.all[arguments[0]]
		else
		return null
	}
	else if(document.layers)
	document.getElementById=function(){
		if(typeof document[arguments[0]]!="undefined")
		return document[arguments[0]]
		else
		return null
	}
	}
	// End -->

	browserName=navigator.appName;
	browserVer=parseInt(navigator.appVersion);
	
	if (browserVer > 2) {
	
	PracticeAreas_R = new Image(116, 25);
	PracticeAreas_R.src="images/PracticeAreas_R.gif";
	PracticeAreas_O = new Image(116, 25);
	PracticeAreas_O.src="images/PracticeAreas_O.gif";
	
	OurPeople_R = new Image(99, 25);
	OurPeople_R.src="images/OurPeople_R.gif";
	OurPeople_O = new Image(99, 25);
	OurPeople_O.src="images/OurPeople_O.gif";	
	
	AboutUs_R = new Image(94, 25);
	AboutUs_R.src="images/AboutUs_R.gif";
	AboutUs_O = new Image(94, 25);
	AboutUs_O.src="images/AboutUs_O.gif";	

	News_R = new Image(150, 25);
	News_R.src="images/News_R.gif";
	News_O = new Image(150, 25);
	News_O.src="images/News_O.gif";	
	
	ContactUs_R = new Image(101, 25);
	ContactUs_R.src="images/ContactUs_R.gif";
	ContactUs_O = new Image(101, 25);
	ContactUs_O.src="images/ContactUs_O.gif";		
			
	DashImg = new Image(8, 8);
	DashImg.src="images/SideNavDash.gif";
	ClearImg = new Image(8, 8);
	ClearImg.src="images/Clear.gif";
	}
	
	function Dash_Roll(imgName) {
		var el = document.getElementById(imgName);
		if (el != null) {
				el.src = DashImg.src;
		}
	}
		
	function Dash_UnRoll(imgName) {
		var el = document.getElementById(imgName);
		if (el != null) {
				el.src = ClearImg.src;
		}

	}		
	
	function RollIt(imgName) {
		var el = document.getElementById(imgName);
		el.src = eval(imgName + "_O.src");
	}
	
	function UnRollIt(imgName) {
		var el = document.getElementById(imgName);
		el.src = eval(imgName + "_R.src");
	}
	
	
	function addToFavorites(URL, PageName) 
	{ 
		if (window.external) { window.external.AddFavorite(URL,PageName) } 
		else { alert("Sorry! Your browser doesn't support this function."); } 
	}	
	
	function PrintToHTML(Link) {
		var w = window.open(Link, 'PrintToHTML', 'width=625,height=475,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,top=20,left=20');
		w.focus();
	}		
	
	function EmailPage(Link) {
		var Loc = "EmailPage.aspx?Link=" + escape(Link)
		var w = 	window.open(Loc, 'EmailPage', 'width=350,height=420,directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,top=100,left=100');
		w.focus();
	}		

	function Print_Page_As_PDF() {
		var lnk = 'PrintIt.aspx?' + document.frmExManage.hdIDFld.value + '=' + document.frmExManage.hdIDVal.value + '&Mode=' + document.frmExManage.hdPageMode.value + '&PrintMode=PDF';
		PrintToHTML(lnk);
	}

	function Add_To_Brochure() {
		var lnk = 'BrochureBuilder.aspx?' + document.frmExManage.hdIDFld.value + '=' + document.frmExManage.hdIDVal.value + '&Mode=' + document.frmExManage.hdPageMode.value + '&Action=Add&ReturnLink=' + escape(location.href);
		location.href=lnk;
	}

	function View_Brochure_Selections() {
		var lnk = 'BrochureBuilder.aspx?ReturnLink=' + escape(location.href);
		location.href=lnk;
	}
	
	function SubmitSearchForm(f) {
		location.href='Page.aspx?Abs_WP_ID=' + escape(f.Abs_WP_ID.value) + '&txtKeywords_FromPage=' + escape(f.txtKeyword_Site.value);		
		return false;
	}