
////************* ÇÁ¸°Æ® ÇÏ±â ±â´É  ******************/
function printContentHTML(CssName)
{
	var obj = document.getElementById("PrintBox");
	if(obj)
	{			
		var form = document.content_print_form;	
		form.content.value = obj.innerHTML;		
		
		///alert(obj.innerText);
		
		form.cssName.value = CssName;
		var screen_width	= screen.availWidth;
		var screen_height	= screen.availHeight;
		var pop_width			= 650;
		var pop_height		= 600;
		var top					= (screen_height - pop_height) / 2;	
		var left					= (screen_width - pop_width) / 2;	
		var param = "scrollbars=yes, width=" + pop_width + ", height=" + pop_height + ", top=" + top + ", left=" + left;	
		
		window.open("about:blank", "_pchtml_", param);	
		
		form.target = "_pchtml_";
		form.submit();			
	}
	else
	{
		alert("No Contents");
	}	
}


	function goPrintdiv(CssName){
	
		var screen_width	= screen.availWidth;
		var screen_height	= screen.availHeight;
		var pop_width			= 650;
		var pop_height		= 600;
		var top					= (screen_height - pop_height) / 2;	
		var left					= (screen_width - pop_width) / 2;	
		var param = "scrollbars=yes, width=" + pop_width + ", height=" + pop_height + ", top=" + top + ", left=" + left;	
		window.open("/common/print_page.jsp?cssName="+CssName, "_pchtml_", param);	
	
	}
	
	