// 플레쉬 출력 07/04/20 neoz
function WriteFlash(s,d,w,h,t){
	flash_source = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=quality value=high /><param name=wmode value=transparent /><embed src="+s+" quality=high wmode="+t+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>";
	document.write(flash_source);
}

// 레이어 센터 고정 08/9/27 neoz ie6 , FF3 에서 test 됨.
function layer_center(){
	var w_w = document.documentElement.clientWidth / 2 - 460;
	if(w_w < 0){ w_w = 0;}
	document.getElementById("transmenu").style.left = w_w + "px";
	setTimeout ("layer_center()", 500); 
}

