// INITIAL DISPLAY FUNCTIONS -------------------------------


function displayMPTopMenu (selectedTopItem) {
var topMenuContent = 

'<p class="menu_top">\n' +
'	<a href="index.html"><span ID="ITEMHOME" class="menu_top_item_off">Home</span></a> \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'		: \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'	<a href="practice.html"><span ID="ITEMPRACTICE" class="menu_top_item_off">Practice</span></a> \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'		: \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'	<a href="attorneys.html"><span ID="ITEMATTORNEYS" class="menu_top_item_off">Attorneys</span></a> \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'		: \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'	<a href="careers.html"><span ID="ITEMCAREERS" class="menu_top_item_off">Careers</span></a> \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'		: \n' +
'		<img src="images/menu_bar_spacer.gif" border="0"> \n' +
'	<a href="about.html"><span ID="ITEMABOUT" class="menu_top_item_off">About Us</span></a>\n' +
'	</p>';

	document.getElementById("MPTOPMENU").innerHTML=topMenuContent;

	if (selectedTopItem) {
		document.getElementById(selectedTopItem).className="menu_top_item_on";
	}
}


function displayMPFooter () {
	
var footerContent = 
	'<p class="copyright_line"><a href=about.html?requestedINFO=DIRECTIONS>Directions</a>\n' +
	'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=about.html?requestedINFO=TERMS>Disclaimer</a>\n' +
	'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n' +
	'Copyright © 2010 Metaxas Brown Pidgeon LLP.  All rights reserved. Attorney advertising. \n' +
	'Prior results do not guarantee a similar outcome.</p>';
 

document.getElementById("MPFOOTER").innerHTML=footerContent;

}




// GENERAL MENU MANAGEMENT FUNCTIONS -------------------------------


function markMenuLeftChoice (selectedOption) {
	for (i=0;i<document.getElementsByTagName("span").length; i++) {
		if (document.getElementsByTagName("span").item(i).className == "menu_left_item_on"){
			document.getElementsByTagName("span").item(i).className = "menu_left_item_off";
			document.getElementsByTagName("span").item(i).MPStatus = "notSelected";
		}
	}
	document.getElementById(selectedOption).className = "menu_left_item_on";
	document.getElementById(selectedOption).MPStatus = "selected";
}


function showSelectedContent (selectedOption) {
	for (i=0;i<document.getElementsByTagName("div").length; i++) {
		if (document.getElementsByTagName("div").item(i).className == "body_content_on"){
			document.getElementsByTagName("div").item(i).className = "body_content_off";
		}
	}
	document.getElementById(selectedOption).className = "body_content_on";

}



// LARRY FUNCTIONS -----------------------------------------------

function markLPMenuChoice (selectedOption) {
	for (i=0;i<document.getElementsByTagName("span").length; i++) {
		if (document.getElementsByTagName("span").item(i).className == "LP_menu_item_on"){
			document.getElementsByTagName("span").item(i).className = "LP_menu_item_off";
			document.getElementsByTagName("span").item(i).LPStatus = "notSelected";
		}
	}
	document.getElementById(selectedOption).className = "LP_menu_item_on";
	document.getElementById(selectedOption).LPStatus = "selected";
}


function showSelectedLPContent (selectedOption) {
	for (i=0;i<document.getElementsByTagName("div").length; i++) {
		if (document.getElementsByTagName("div").item(i).className == "LP_content_on"){
			document.getElementsByTagName("div").item(i).className = "LP_content_off";
		}
	}
	document.getElementById(selectedOption).className = "LP_content_on";
}






// UTILITIESS -------------------------------


function displayAttyELink (attyEName) {
	email = attyEName;
	address = "metaxasbrown.com";
	displayText = email + '@' + address;
	document.write('<a href=\"mailto:' + email + '@' + address + '\" Title=\"\">');
	document.write(displayText + '</a>');
	}


function displayGeneralELink (EName, EAddress, EType) {
	email = EName;
	address = EAddress;
	addressType =  EType;
	displayText = email + '@' + address + '.' + addressType;
	document.write('<a href=\"mailto:' + email + '@' + address + '.' + addressType + '\" Title=\"\">');
	document.write(displayText + '</a>');
	} 


function printThisPage(contentToPrint)
{ 
	var content_value2 = "";
	var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		disp_setting+="scrollbars=yes, width=825, height=600, left=100, top=25"; 
	var content_value1 = document.getElementById(contentToPrint).innerHTML; 
	if (contentToPrint=="CHRS") {
		var content_value2 = "<p class='footer'>" + document.getElementById("CWPDISCLAIMER").innerHTML + "</p>";
		}
	var content_value2 = content_value2 + "<p class='footer'>" + document.getElementById("MBPFOOTER").innerHTML; + "</p>"
	var content_value = content_value1 + content_value2;
//	alert(content_value1);
//	alert(content_value2);
 	var docprint=window.open("","",disp_setting); 
		docprint.document.open(); 
		docprint.document.write('<html><head><title>Metaxas Brown Pidgeon LLP</title>'); 
		docprint.document.write('<link type="text/css" rel="stylesheet" href="css/MBP_print.css">');
		docprint.document.write('<script src="code/MBP_print.js"></script></head>');
 		docprint.document.write('<body onLoad="self.print()">');          
		docprint.document.write('<img src="images/logo.jpg" class="print_banner">');          
		docprint.document.write(content_value);          
		docprint.document.write('</body></html>'); 
		docprint.document.close(); 
		docprint.focus(); 

	}

function printDirections(directions, contactInfo)
{ 
	var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		disp_setting+="scrollbars=yes, width=825, height=600, left=100, top=25"; 
	var content_vlue1 = document.getElementById(directions).innerHTML; 

	var docprint=window.open("","",disp_setting); 
		docprint.document.open(); 
		docprint.document.write('<html><head><title>Metaxas Brown Pidgeon LLP</title>'); 
		docprint.document.write('<link type="text/css" rel="stylesheet" href="css/MBP_print.css">');
		docprint.document.write('<script src="code/MBP_print.js"></script></head>');
 		docprint.document.write('<body onLoad="self.print()">');          
		docprint.document.write('<img src="images/logo.jpg" class="print_banner">');          
		docprint.document.write(content_vlue1); 
		docprint.document.write('</div></body></html>'); 
		docprint.document.close(); 
		docprint.focus(); 
	}



