﻿//Flash File
function flash_file(num){
    var flash = new Object();
    switch(num){
         case "m_movie" :
            flash.path = _SUDDEN_IMG_URL + "/flash/m_movie.swf"; // Main Left Flash
//            flash.width = 228;
//            flash.height =127;
            break;
		 case "n_rbanner" :
            flash.path = _SUDDEN_FILE_URL + "/INDEX_XML/banner/n_rbanner.swf"; // Main Event Flash
//            flash.width     = 244;
//            flash.height    = 172;
            break;
         case "dk_MainEvent" :
            flash.path = _DEKARON_IMG_URL + "/_flash/main_event.swf"; // Main Event Flash
//            flash.width     = 220;
//            flash.height    = 242;
            break;
		case "introVideo" : //20100216 최욱진 추가
			flash.path = _DEKARON_IMG_URL + "/_flash/video.swf"; // intro video
			break;              
		case "infoVideo" : //20100216 최욱진 추가
			flash.path = _DEKARON_IMG_URL + "/_flash/video1.swf"; // info video
			break;  
	case "dk_MainVideo" :
		flash.path = _DEKARON_IMG_URL + "/_flash/main_video.swf"; // Main video
		break;
		case "tournament" :
			flash.path = _DEKARON_IMG_URL + "/_flash/tour/tournament.swf"; 
			break;
		case "tournament_2" :
			flash.path = _DEKARON_IMG_URL + "/_flash/tour/tournament_2.swf";
			break;
		case "tournament_3" :
			flash.path = _DEKARON_IMG_URL + "/_flash/tour/tournament_3.swf";
			break;	
	}
    return flash;
}



//Flash Call
function flash_object(num,p,_width_,_height_,_id_){
    var flash = flash_file(num);

	if(typeof(_id)=='undefined')
	{
		_id = "";
	}
    
    if(flash.param != undefined && p != undefined){
        if(p.indexOf(",") > 0){
            var param = p.split(",");
        }
        else{
            var param = new Array(p);
        }
   
        for(var i = 0; flash.param.length > i; i++){
            flash.path += i==0 ? "?" : "&";
            flash.path += flash.param[i]+"="+param[i];
        }
    }
	
		var v = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+_width_+'" height="'+_height_+'">'
		+ '<param name="movie" value="'+flash.path+'">'
		+ '<param name="flashvars" value="PageNum='+p+'">'
		+ '<param name="menu" value="false">'
		+ '<param name="quality" value="high">'
		+ '<param name="wmode" value="transparent">'
		+ '<param name="allowScriptAccess" value="always" />'
		+ '<embed src="'+flash.path+'" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowScriptAccess="always"'
		+ ' width="'+_width_+'" height="'+_height_+'" wmode="transparent" flashvars="PageNum='+p+'"></embed>'
		+ '</object>';
        document.write(v);
}