
function printSpecial()
{
if (document.getElementById != null)
{
var html = '<HTML>\n<HEAD>\n';

if (document.getElementsByTagName != null)
{
var headTags = document.getElementsByTagName("head");

}

html += '\n</HE>\n<BODY>\n';
html += '\n<img src="newhomeimages/logo.jpg" />\n'

var printReadyElem = document.getElementById("printReady");

if (printReadyElem != null)
{
html += printReadyElem.innerHTML;
}
else
{
alert("Could not find the printReady function");
return;
}

html += '\n</BO>\n</HT>';

var printWin = window.open("","printSpecial");
printWin.document.open();
printWin.document.bgColor="white"
printWin.document.write(html);
printWin.document.bgColor="white"
printWin.document.close();
printWin.print();
}
else
{
alert("Please update your browser.");
}
}



