<!--
// ¸ÞÀÏ ¹ß¼ÛÃ¢
function LA_openMailWin(board_id,uid,name){
	window.open('mail.html?board_id='+board_id+'&uid='+uid+'&name='+name,'mailWin','width=300,height=200,top=200,left=300,menubar=no,status=no');
}

// ÀÌ¹ÌÁö Ã¢
function LA_openImgWin(img_url,width,height){
	window.open('img_zoom.html?url='+img_url,'imgZoom','width='+width+',height='+height+',scrollbars=auto,menubar=no,status=no,resizable=yes');
}

// ÀÎ¼âÇÏ±â ÇÔ¼ö
function LA_printWin(mode, title){
	try{
		var str;

		var win = window.open("","prinWin",'width=700,height=500,resizable=no,top=50,left=100,scrollbars=yes,toolbar=no,menubar=no');

		str = "<html>\n";
		str += "<head>\n";
		str += "<meta http-equiv='content-type' content='text/html; charset=euc-kr'>\n";
		str += "<title>"+title+"</title>\n";
		str += "<link href='/voc/board/css/print.css' rel='stylesheet' type='text/css' />\n";
		str += "<link href='/voc/board/css/board.css' rel='stylesheet' type='text/css' />\n";


		str += document.getElementById("printContents").innerHTML;
		str += "<table width='100%' height='50'><colgroup><col style='width:50%;'><col style='width:50%;'></colgroup>";
		str += "<tr><td align=center><input type='image' src='skin/default/images/btn_print.gif' OnClick='javascript:self.print();self.close();' /></td></tr></table>";

//		str += "<input type='button' OnClick='javascript:self.print();' value='ÀÎ¼â' />

		win.document.open();
		win.document.write(str);
		win.document.close();

	}catch(e){}
	
}
//-->
