
	function printDiv()
	{
		var a = window. open('','','scrollbars=yes,width=668,height=600');

		var e = document.getElementById('Content');

		a.document.open("text/html");
		a.document.write('<html><head>'+
						'<link rel="stylesheet" type="text/css" href="scripts/adminStyles.css">'+
						'</head><body>');
		a.document.write('<b>Westmore Apartments</b>');
		a.document.write('<Br><hr size=1 noshade><br>');
		a.document.write(e.innerHTML);
		
		a.document.write('<br><Br><hr size=1 noshade>');
		a.document.write('<p>From: Westmore Apartments<br>');
		a.document.write('Web Site: www.WestmoreApts.com<Br>');
		a.document.write('</body></html>');
		a.document.close();
		a.print();	
	}

