// JavaScript Document

function goPrint()
/*
Opens the div contents in new window
Prints the div contents
Closes window
*/
{
	var a = window. open('','','scrollbars=1,width=550,height=550,resizable=1');
	
	a.document.open("text/html");
	a.document.write('<html><head><link rel="stylesheet" href="css/print-forecast.css" /></head><body>');
	a.document.write('<div style="border: 1px solid #000000; padding: 8px;"><h2>Manchester Afterdark - Deadset Screening</h2>');
	a.document.write('<div style="text-align: center"><img src="http://www.manchesterad.com/img/newsletter/Manchester-Afterdark-voucher.jpg" border="0" /></div><br><br>');

	a.document.write('<div class="foot">&copy; 2008 ManchesterAD.com</div>');
	a.document.write('</div></body></html>');
	a.document.close();
	a.print();
	a.window.close();
}