
function printIt(foo)
{
	var a = window.open('','','width=400,height=600');
	a.document.open("text/html");
	a.document.write("<style type='text/css'> .printBtn {display: none;} </style>");
	a.document.write("<p>Please call <strong style='font-size:bigger;'>1-866-626-5207</strong> to make your reservation today!</p>");
	a.document.write(document.getElementById(foo).innerHTML);
	a.document.write("<script type='text/javascript'>")
	a.document.write("setTimeout('self.close();',1000);");
	a.document.write("</script>");
	a.document.close();
	a.print();
}
