// JavaScript Document

function printPage()
{
	var a = window.open('','','width=500,height=500,resize,scrollbars');
	a.document.open("text/html");
	a.document.write('<link rel="stylesheet" href="style_print.css" type="text/css"><h1 align="center">Valley of the Sun Weddings</h1><h3 align="center">www.valleyofthesunweddings.com<br>Rev. Norm Pritchard<br><strong>Telephone: 602-493-2171<br>Email: <a href="mailto:norm@normpritchard.net">norm@normpritchard.net</a></h3>');
	a.document.write(document.getElementById('print').innerHTML);
	a.document.close();
	a.print();
}