
	function window.onbeforeprint() 
	{
		document.all.item("_MainTable").width = "100%";
	}
	
	
	function window.onafterprint()
	{
		document.all.item("_MainTable").width = "755";
	}
	
	
	function writeTableHead(p_strParam) 
	{
		document.write	
		(
			"<table id='_MainTable' width='755' cellspacing='0' cellpadding='0' border='0' align='center'>" +
				"<tr>" +
					"<td>"
		)			
	}
	
	
	function writeTableFoot(p_strParam) 
	{
		document.write
		(
					"</td>" +
				"</tr>" +	
			"</table>"	
		)			
	}
