/*   Site wide function used to pop up print preview window   */

function printThis() {
	var htmlPage	= "/printTemplate.php";
	var winName		= "printPreview";
	var args		= "scrollbars,width=700,height=800";
	newWin = window.open(htmlPage, winName, args);
	newWin.focus();
}