var g_newWindow;

function printContent( p_strTagID, p_strSenator, p_strPrintBannerURL ) {
	var strHTML			= "<html><head>\n" +
							"<title>Print</title>\n" +
							"<link rel='stylesheet' type='text/css' href='/lib/css/common.css' />\n" +
						  "</head><body onload='window.print();window.close();' style='background-color:white;margin:20px 20px 20px 20px;'>\n" +
						    "<div style='width:625px;'>";
	if( p_strPrintBannerURL == null || p_strPrintBannerURL == "" ) {
		strHTML			+= ((""+p_strSenator)!="" ? "<h4 class='heading'>From " + p_strSenator + "</h4><br />" : "");
	}
	else {
		strHTML			+= "<img class='block' src='"+p_strPrintBannerURL+"' /><br />";
	}
	strHTML				+= getTagByID( p_strTagID ).innerHTML +
							"</div>" +
						  "</body></html>";
	
	openWindow_write( strHTML );
}

function openWindow_write( p_strHTML ) {

	if(!g_newWindow || g_newWindow.closed) {
		g_newWindow				= window.open("", "g_newWindow", "status, scrollbars, resizable, width=675, height=400");
	}

	g_newWindow.focus();
	g_newWindow.document.open();
	g_newWindow.document.write( p_strHTML );
	g_newWindow.document.close();
}
