
var gAutoPrint = true; // Tells whether to automatically call the print function

function printSpecial()
{
if (document.getElementById != null)
{
var html = '<HTML>\n<HEAD>\n';

if (document.getElementsByTagName != null)
{
var headTags = document.getElementsByTagName("head");
if (headTags.length > 0)
html += headTags[0].innerHTML;
}

html += '\n<link href="brgcss.css" rel="stylesheet" type="text/css"></HEAD>\n<BODY STYLE="background-color: rgb(255,255,255); background-image: none;"><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" class="text"><tr><td width="353" valign="top"><font color="#1E3264" face="Times New Roman, Times, serif"><span style="font-size:26px;line-height:26px"><span style="font-size:36px">B</span>ENJAMIN <span style="font-size:36px">R</span>OSS <span style="font-size:36px">G</span>ROUP</span><br><span style="font-size:15px"><span style="font-size:21px">B</span>USINESS <span style="font-size:21px">S</span>ALES &#8226; <span style="font-size:21px">M</span>ERGERS &#8226; <span style="font-size:21px">A</span>CQUISITIONS</span></font></td><td align="right"><table border="0" cellpadding="0" cellspacing="0" class="top" class="text"><tr><td height="61" valign="top"><h4 align="right"><font color="#000000">Main Office, Southampton, PA (215) 357-9694<br>Radnor, PA (610) 687-1804<br>Princeton, NJ (609) 252-0776<br>www.benjaminrossgroup.com</font></h4></td></tr></table></td></tr><tr><td colspan="2">&nbsp;</td></tr><tr><td colspan="2">\n';

var printReadyElem = document.getElementById("printReady");

if (printReadyElem != null)
{
html += printReadyElem.innerHTML;
}
else
{
alert("Could not find the printReady function");
return;
}

html += '\n</td></tr><tr><td colspan="2">&nbsp;</td></tr></table></BODY>\n</HTML>';

var printWin = window.open("","printSpecial");
printWin.document.open();
printWin.document.write(html);
printWin.document.close();
if (gAutoPrint)
printWin.print();
}
else
{
alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
}
}

