// flv파일
// 사용법 : flv(파일,가로,세로,config파일)

function flv(file,width,height,config){
	var	clsid, codebase, pluginspage, movie, type, menu, wmode, id, flashvars;
	clsid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"; 
	codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9.0.115";
	pluginspage = "http://www.macromedia.com/go/getflashplayer";
	movie = "movies/images/player.swf";
  type = "application/x-shockwave-flash";
  menu = "false";
  wmode = "opaque";
  id = "ply";
  flashvars = "file="+file+"&config="+config+"";
  
	var str = '<object id="' +id+ '" classid="' +clsid+ '" codebase="' +codebase+ '" width="' +width+ '" height="' +height+ '">' +
  		      '<param name="allowscriptaccess" value="always" />'	+
    	    	'<param name="allowfullscreen" value="true" />' + 
        		'<param name="quality" value="high" />' +
            '<param name="wmode" value="' +wmode+ '" />' +
            '<param name="menu" value="' +menu+ '" />' +		
        		'<param name="movie" value="' +movie+ '" />' +
		        '<param name="flashvars" value="' +flashvars+ '" />' +
		        
		        '<embed name="' +id+ '" src="' +movie+ '" pluginspage="' +pluginspage+ '" type="' +type+ '" width="' +width+ '" height="' +height+ '" ' +
		        'allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="' +wmode+ '" menu="' +menu+ '" ' +
		        'flashvars="' +flashvars+ '">' + 
		        '</embed></object>' +
		        "";
		document.write(str);
}
// 탭메뉴
function MenuChang(index) {
  for(i=1; i <= 4; i++) {
    document.getElementById("menu"+i).style.display ="none";
    document.getElementById("tab"+i).src ="movies/images/tab_out_0"+i+".gif";
    }
    document.getElementById("menu"+index).style.display="block";
    document.getElementById("tab"+index).src ="movies/images/tab_over_0"+index+".gif";
}

// swf파일
// 사용법 : swf(파일,가로,세로)

function swf(movie,width,height){
	var	clsid, codebase, pluginspage, type, menu, wmode;
	clsid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"; 
	codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9.0.115";
	pluginspage = "http://www.macromedia.com/go/getflashplayer";
  type = "application/x-shockwave-flash";
  menu = "false";
  wmode = "opaque";
    
	var str = '<object classid="' +clsid+ '" codebase="' +codebase+ '" width="' +width+ '" height="' +height+ '">' +
  		      '<param name="allowscriptaccess" value="always" />'	+
    	    	'<param name="allowfullscreen" value="true" />' + 
        		'<param name="quality" value="high" />' +
            '<param name="wmode" value="' +wmode+ '" />' +
            '<param name="menu" value="' +menu+ '" />' +		
        		'<param name="movie" value="' +movie+ '" />' +
		        		        
		        '<embed src="' +movie+ '" pluginspage="' +pluginspage+ '" type="' +type+ '" width="' +width+ '" height="' +height+ '" ' +
		        'allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="' +wmode+ '" menu="' +menu+ '" ' +
		        '>' + 
		        '</embed></object>' +
		        "";
		document.write(str);
}


