function PrintContent()
{
var CONTENT = ("<div style=\"max-width: 610px; _width: 610px; padding: 5px; margin: 5px; text-align: center;\">" + "<table width=\"600\" style=\"font-family: tahoma, serif; font-size: 12px; font-weight: normal;\">" + "<tr><td>" + "<img src=\"../DSN/wwwpiedmontcentercom/Content/Images/popup_header.jpg\">" + "</td></tr>" + "<tr><td>" + document.getElementById("contentPrint").innerHTML + "</td></tr>" + "<tr><td>" + "<img src=\"../DSN/wwwpiedmontcentercom/Content/Images/popup_footer.jpg\">" + "</td></tr>" + "</table>" + "</div>");
pop = window.open("","","width=635,titlebar=1,toolbar=1,menubar=1,scrollbar=1");
pop.document.open();
pop.focus();
pop.document.write(CONTENT);
pop.setTimeout("print()",2000);
pop.history.go();
};