//onfocus="this.blur()"
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 

//¸¶¿ì½º ¿À¹ö½Ã ÀÌ¹ÌÁö ÆäÀÌµù
function change_img(id,src) 
{ 
eval(id+'.filters.blendTrans.stop();'); 
eval(id+'.filters.blendTrans.Apply();'); 
eval(id+'.src="'+src+'";'); 
eval(id+'.filters.blendTrans.Play();'); 
} 



/* * * * * * * * * * * * *
 input ÀÌ¹ÌÁöÅ¸ÀÔ border ¾ø¾Ö±â
 * * * * * * * * * * * * */

function inputType_noBorder()
{
	// border ¾ø¾Ù type
	var notBorderType = ['checkbox', 'radio', 'image'];

	var inputObj = document.body ? document.body.all.tags("INPUT") : document.getElementsByTagName("INPUT");
	var inputLen = inputObj.length;
	var notBorderTypeCnt = notBorderType.length;
	for(i=0; i<inputLen; i++) {
		for(j=0; j<notBorderTypeCnt; j++) {
			if(inputObj[i].type != notBorderType[j]) continue;
			inputObj[i].style.border = 0;
		}
	}
}


//¸Þ´ºº¯°æ



