function doPrint() {
	bdhtml = window.document.body.innerHTML;
	var bodyhtml = bdhtml;
	sprnstr = "<!--startprint-->";
	eprnstr = "<!--endprint-->";
	prnhtml = bdhtml.substr(bdhtml.indexOf(sprnstr) + 17);
	prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr));
	window.document.body.innerHTML = prnhtml + "</dl></div>";
	window.print();
	// window.document.all.WebBrowser.ExecWB(7,1);
	window.document.body.innerHTML = bodyhtml;
}
function linkDetail(id, channel) {
	var idAndChannel = id + "@" + channel;
	window
			.open("/uc/emailPage.jsp?obj="
					+ idAndChannel, "newwindow",
					"height=800, width=1000, top=50, left=60, location=no, resizable=yes ");
}
function viewPrint() {
	bdhtml = window.document.body.innerHTML;
	var bodyhtml = bdhtml;
	sprnstr = "<!--startprint-->";
	eprnstr = "<!--endprint-->";
	prnhtml = bdhtml.substr(bdhtml.indexOf(sprnstr) + 17);
	prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr));
	window.document.body.innerHTML = prnhtml;
	// window.print();
	window.document.all.WebBrowser.ExecWB(7, 1);
	window.document.body.innerHTML = bodyhtml;
}
