// Print contents of div#printArea

function go()
{
var a = window.open('','','scrollbars=yes,width=500,height=500');
a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="stylesSub.css" /></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF;">');
a.document.write('<h1>PRIME LOCATIONS</h1>');
a.document.write(document.getElementById('printArea').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();
}
