//°ø¶õ Ã¼Å© Ã¼Å©
function Trim(str)
{ 
	var reg =/ /g; 
	return str.replace(reg,''); 
}

// ·¹µð¿À ¹öÆ° Ã¼Å©
function checkRadio(frm,field) {
		var field=eval("document."+frm+"."+ field );

        for(var i=0;i<field.length;        i++) { // ¶óµð¿À¹öÆ°ÀÇ °¹¼ö-1 ¸¸Å­ ·çÇÁ¸¦ µ¹¸³´Ï´Ù
                if (field[i].checked == true) { // Ã¼Å©µÈ ¹öÆ°À» Ã£À¸¸é
        //      alert(i+1+" ¹øÂ° ¹öÆ°ÀÌ Ã¼Å©µÇ¾ú½À´Ï´Ù"); // ¸Þ¼¼Áö¸¦ Ãâ·ÂÇÕ´Ï´Ù
                return false;
                }
        }
        if(i==field.length) {
        	field[0].focus();
        	all_Field_Valid = false;
          return true;
        }
}

// ±âº» »b¾÷ Ã³¸® 
function popopen(url, t, w, h, s) {
	var sw;
	var sh;

	sw = (screen.Width - w) / 2;
	sh = (screen.Height - h) / 2;

	hk_pop=window.open(url, t, 'toolbar=no, location=no, status=no, menubar=no, scrollbars='+s+', resizable=no, Width='+w+'px, Height='+h+'px, Left='+sw+', Top='+sh);
	hk_pop.focus();
}

// ¿ª»ç°ü
function popopen2(url, t, w, h, s) {
	var sw;
	var sh;

	sw = 0;
	sh = 0;

	hk_pop=window.open(url, t, 'toolbar=no, location=no, status=no, menubar=no, scrollbars='+s+', resizable=no, Width='+w+'px, Height='+h+'px, Left='+sw+', Top='+sh);
	hk_pop.focus();
}

// Flash Àü¿ë È£ÃâÇÔ¼ö id_name : ID¶Ç´ÂName °ª, swf_name : ¼îÅ©¿þÀÌºêÆÄÀÏ °æ·Î(ÀÌ¸§,GET°ªÆ÷ÇÔ), wdith: ³ÐÀÌ°ª, height: ³ôÀÌ°ª 
function swf_func(id_name,swf_name,width,height){
document.writeln("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='/asset/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' id='"+id_name+"' align='middle'>");
document.writeln("<param name='allowScriptAccess' value='always'>");
document.writeln("<param name='movie' value='"+swf_name+"'>");
document.writeln("<param name='quality' value='high'>");
document.writeln("<param name='bgcolor' value='#ffffff'>");
document.writeln("<param name='wmode' Value='Transparent'>");
document.writeln("<embed src='"+swf_name+"' width='"+width+"' height='"+height+"' type='application/x-shockwave-flash' wmode='transparent'></embed>");
document.writeln("</object>");
}

//¿ª»ç°ü
function history_pop(){
	var width = screen.width;
	var height = screen.height;
	
	popopen2('http://www.kdnavien.co.kr/history/main.asp', 'history_pop', width, height, 'no');
}


