function _print_Window() {
	var printWindow = window.open(location.pathname+"?style=print","printWindow","width='980px',toolbar=no");
	printWindow.focus();
	printWindow.print();
}

function _click_printView() {
	_print_Window();
}

