//클릭시 점선 없애기
function bluring(){ if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); }
document.onfocusin=bluring;

//comment
function inputForm(This) {
	This.style.backgroundImage="none";
	This.style.backgroundColor="#f6f4ef";
}

function inputFormout(This) {
	This.style.backgroundColor="#f6f4ef";
}

//flash
//플래시
function swf_obj (src, w, h, swfid) {
	swf_html='';
	swf_html+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'" id="'+swfid+'">';
	swf_html+='<param name="allowScriptAccess" value="always">';
	swf_html+='<param name="movie" value="'+src+'">';
	swf_html+='<param name="quality" value="high">';
	swf_html+='<param name="bgcolor" value="#FFFFFF">';
	swf_html+='<PARAM NAME="wmode" VALUE="transparent">';
	swf_html+='<embed src="'+src+'" quality="high" bgcolor="#FFFFFF" width="'+w+'" height="'+h+'" name="'+swfid+'" allowScriptAccess="always" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
	swf_html+='</object>';
	document.write(swf_html);
}

//팝업
function popup(url, width, height, id) {
	window.open(url, id, "width="+width+", height="+height);
}
