function tablePrint()
{

//------------------Declare the variables------------------//
	
	// First, set the dsiplay settings for the pop up window
	var display_setting = "toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes, width=600, height=600, false";
	
	// Next, tell it which content to get
	var content_innerhtml = document.getElementById("pressroomContent").innerHTML;
	
	var document_print = window.open(display_setting,"","");
	
// -----------------Build the Page------------------//

	// Open the Window
	document_print.document.open();

	// Inserts opening tags
	document_print.document.write('<html><head><title>Compeat Restaurant Management Systems</title><link href="http://www.compeat.com/css/printArticle.css" rel="stylesheet" type="text/css" /></head><body><div id="articleContainer">');
	
	// Inserts "article" into body
	document_print.document.write(content_innerhtml);
	
	// Writes the closing tags
	document_print.document.write('<br><p>Compeat Restaurant Management Systems<br>11940 Jollyville Road, Suite 200<br>Austin, Texas&nbsp;78759<br>(512) 279-0771<br><a href="http://www.compeat.com">www.compeat.com</a></p></div></body></html>');
	
//-------------------Print the article------------------//

	// Opens Print dialogue
	document_print.print();
	
	// Closes window after printing
	document_print.document.close();
	return false;

}