﻿// JScript File
<!--
///////////////////////////////
// MVSD print.js
// Version: 1.0.0 25-08-20098
// Preconditions:
//		- none
// Dependencies:
//		- none
// Description:
// Required functionality concerning EasyWebEdit print preview.
///////////////////////////////


function openPrintPreview(){
    newwindow2 = window.open('','HousingMatters','');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>HousingMatters Print Preview</title>');
	tmp.write('<link rel="stylesheet" href="css/SiteStyle.css">');
	tmp.write('</head><body onload="window.print();">');
	tmp.write(document.getElementById('contentLayer').innerHTML);
	tmp.write('</body></html>');
	tmp.close();
}
