function printPv1(divStr)
{
	var divObj = document.getElementById(divStr);

	txt =
		"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>" +
		"<html>" +
		"<head>" +
		"<title>Copyright &copy; Colonial Lighting Australia 2004</title>" +
		"<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>" +
		"</head>" +

		"<body>" +
		"<table width='640' border='0' cellspacing='0' cellpadding='0'>" +
		  "<tr> " +
			"<td><img src='images/topbanner_left.gif' width='185' height='84'><img src='images/topbanner_right.gif' width='455' height='84'></td>" +
		  "</tr>" +
		"</table>" +
		"<table width='640' border='0' cellspacing='0' cellpadding='10'>" +
		  "<tr> " +
			"<td valign='top'>" +
			divObj.innerHTML +
			"</td>" +
		  "</tr>" +
		  "<tr> " +
			"<td valign='top'>" +
			"<img src='' width='0' height='10'>" +
			"</td>" +
		  "</tr>" +
		  "<tr> " +
			"<td valign='top' align='left'>" +
			"<input type='button' value='Print Page' onclick='window.print()' >" +
			"</td>" +
		  "</tr>" +

		"</table>" +
		"</body>" +
		"</html>";

	w = window.open("", "", 'width=700,height=500, toolbar=no,statusbar=yes,scrollbars=yes,resizable=yes');
	w.document.write(txt);
}

function printPv(divStr, trStr)
{
	var divObj = document.getElementById(divStr);

	txt =
		"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>" +
		"<html>" +
		"<head>" +
		"<title>Copyright &copy; Colonial Lighting Australia 2004</title>" +
		"<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>" +
		"</head>" +

		"<body>" +
		"<table width='640' border='0' cellspacing='0' cellpadding='0'>" +
		  "<tr> " +
			"<td><img src='images/topbanner_left.gif' width='185' height='84'><img src='images/topbanner_right.gif' width='455' height='84'></td>" +
		  "</tr>" +
		"</table>" +
		"<table width='640' border='0' cellspacing='0' cellpadding='10'>" +
		  "<tr> " +
			"<td valign='top'>" +
			divObj.innerHTML +
			"</td>" +
		  "</tr>" +
		  "<tr> " +
			"<td valign='top'>" +
			"<img src='' width='0' height='10'>" +
			"</td>" +
		  "</tr>" +
		  "<tr> " +
			"<td valign='top' align='left'>" +
			"<input type='button' value='Print Page' onclick='window.print()' >" +
			"</td>" +
		  "</tr>" +

		"</table>" +
		"</body>" +
		"</html>";

	w = window.open("", "", 'width=700,height=500, toolbar=no,statusbar=yes,scrollbars=yes,resizable=yes');
	w.document.write(txt);
	w.document.getElementById(trStr).style.display = "none";
}

