// JavaScript Document หกด

<!--
function setPng24(obj) {
    obj.width=obj.height=1;
    obj.className=obj.className.replace(/\bpng24\b/i,'');
    obj.style.filter =
    "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
    obj.src=''; 
	return '';
}
//-->

function flash(width,height,flash_name) {
 var flash_tag = "";
 flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
 flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" ';
 flash_tag +='WIDTH="'+width+'" HEIGHT="'+height+'" >';
 flash_tag +='<param name="movie" value="'+flash_name+'">';
 flash_tag +='<param name="quality" value="high">';
	flash_tag +='<param name="wmode" value="transparent">';
 flash_tag +='<embed src="'+flash_name+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
 flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+width+'" HEIGHT="'+height+'"></embed></object>'
 document.write(flash_tag);
}

var isDOM = (document.getElementById ? true : false);
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
var isNS = navigator.appName == "Netscape";

function getRef(id) {
	if (isDOM) return document.getElementById(id);
    if (isIE4) return document.all[id];
    if (isNS4) return document.layers[id];
}

var scrollerHeight = 88;
var puaseBetweenImages = 3000;
var imageIdx = 0;

function startVScroll() {
}

function moveRightEdge() {
	var yMenuFrom, yMenuTo, yOffset, timeoutNextCheck;

	if (isDOM) {
		yMenuFrom   = parseInt (divMenu.style.top, 10);
		yMenuTo     = (isNS ? window.pageYOffset : document.body.scrollTop) + 115 // 위쪽 위치
	}
        timeoutNextCheck = 500;



        if (yMenuFrom != yMenuTo) {

                yOffset = Math.ceil(Math.abs(yMenuTo - yMenuFrom) / 20);

                if (yMenuTo < yMenuFrom)

                        yOffset = -yOffset;

                if (isNS4)

                        divMenu.top += yOffset;

                else if (isDOM)

                        divMenu.style.top = parseInt (divMenu.style.top, 10) + yOffset;

                        timeoutNextCheck = 10;

        }

        setTimeout ('moveRightEdge()', timeoutNextCheck);

}

function Layer_overload(LayerName,Status) 
{
    if (navigator.appName == "Netscape")
    {
		LayerN = document.getElementById(LayerName).style;
		if (Status == 'show') LayerN.visibility = 'visible';
		if (Status == 'hide') LayerN.visibility = 'hidden';
    }	
    else
    {
		LayerN = document.all[LayerName].style;
		if (Status == 'show') LayerN.visibility = 'visible';
		if (Status == 'hide') LayerN.visibility = 'hidden';
    }
}

function MS_Flash(fid,src,wid,hei,fvs,wmd) { 
  this.fPrint = ''; 
  this.Id = document.getElementById(fid); 
  this.Src = src; 
  this.Width = wid; 
  this.Height = hei; 
  this.FlashVars = ( typeof fvs != 'undefined')? fvs :''; 
  this.Wmod = ( typeof wmd != 'undefined')? wmd :''; 

  if(isObject(Id)) { 
    fPrint = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"'; 
    fPrint += ' id="'+Id+'"'; 
    fPrint += ' width="'+Width+'"'; 
    fPrint += ' height="'+Height+'">'; 
    fPrint += '<param name="movie" value="'+Src+'">'; 
    fPrint += '<param name="quality" value="high">'; 
    fPrint += '<param name="AllowScriptAccess" value="always" />';
    fPrint += (FlashVars != null) ? '<param name="FlashVars" value="'+FlashVars+'">' : ''; 
    fPrint += (Wmod != null) ? '<param name="wmode" value="'+Wmod+'">' : ''; 
    fPrint += '<embed'; 
    fPrint += ' name="'+Id+'"'; 
    fPrint += ' src="'+Src+'"'; 
    fPrint += (FlashVars != null) ? ' FlashVars="'+FlashVars+'"' : ''; 
    fPrint += (Wmod != null) ? ' wmode="'+Wmod+'"' : ''; 
    fPrint += ' quality="high"'; 
    fPrint += ' pluginspage="http://www.macromedia.com/go/getflashplayer"'; 
    fPrint += ' type="application/x-shockwave-flash"'; 
    fPrint += ' width="'+Width+'"'; 
    fPrint += ' height="'+Height+'"'; 
    fPrint += ' AllowScriptAccess="always"></embed>'; 
    fPrint += '</object>'; 
    Id.innerHTML = fPrint; 
  } 
} 

function isObject(a) {
    return (a && typeof a == 'object');
}

function MS_Embed() 
{ 
  var obj = new String; 
  var parameter = new String; 
  var embed = new String; 
  var html = new String; 
  var allParameter = new String; 
  var clsid = new String; 
  var codebase = new String; 
  var pluginspace = new String; 
  var embedType = new String; 
  var src = new String; 
  var width = new String; 
  var height = new String; 

    
  this.init = function( s ,w , h, getType ) { 
      getType = (getType != undefined)? getType :'flash'; 
      if ( getType == "flash") 
      { 

        clsid = "D27CDB6E-AE6D-11cf-96B8-444553540000";        
        codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"; 
        pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
        embedType = "application/x-shockwave-flash"; 
      } 
      /* type 추가 
      else if ( ) 
      { 
      } 
      */ 
            
      parameter += "<param name='movie' value='"+ s + "'>\n";  
      parameter += "<param name='quality' value='high'>\n";    
      parameter += "<param name='AllowScriptAccess' value='always' />\n";    
      
      src = s; 
      width = w; 
      height = h; 
  } 
  
  this.parameter = function( parm , value ) {      
      parameter += "<param name='"+parm +"' value='"+ value + "'>\n";        
      allParameter += " "+parm + "='"+ value+"'"; 
  }  
  
  this.show = function() { 
      if ( clsid ) 
      { 
        obj = "<object classid=\"clsid:"+ clsid +"\" codebase=\""+ codebase +"\" width='"+ width +"' height='"+ height +"'>\n"; 
      } 
      
      embed = "<embed src='" + src + "' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" AllowScriptAccess='always'></embed>\n"; 
      
      if ( obj ) 
      { 
        embed += "</object>\n"; 
      } 
      
      html = obj + parameter + embed; 
      
      document.write( html );  
  } 
  
} 

function activemovie(str, wid, hei) {
   document.write(" <object src='"+str+"' width='"+wid+"' height='"+hei+"'></object>")
}

/**
 * FLASH Create function
 * 현 검색순위 TOP10에서 사용중
 */
function Createflash(widths, heights, movie, ids, vars) {
    var strflash = "<OBJECT ";
    strflash += "id='" + ids + "' codeBase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0' ";
    strflash += "width='" + widths + "' height='" + heights + "' align='middle' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'>";
    strflash += "<PARAM NAME='Movie' VALUE='" + movie + "'>";
    strflash += "<PARAM NAME='Src' VALUE='" + movie + "'>";
    strflash += "<PARAM NAME='WMode' VALUE='Transparent'>";
    strflash += "<PARAM NAME='Play' VALUE='-1'>";
    strflash += "<PARAM NAME='Loop' VALUE='-1'>";
    strflash += "<PARAM NAME='Quality' VALUE='High'>";
    strflash += "<PARAM NAME='SAlign' VALUE=''>";
    strflash += "<PARAM NAME='Menu' VALUE='-1'>";
    strflash += "<PARAM NAME='Base' VALUE=''>";
    strflash += "<PARAM NAME='AllowScriptAccess' VALUE='sameDomain'>";
    strflash += "<PARAM NAME='Scale' VALUE='ShowAll'>";
    strflash += "<PARAM NAME='DeviceFont' VALUE='0'>";
    strflash += "<PARAM NAME='EmbedMovie' VALUE='0'>";
    strflash += "<PARAM NAME='BGColor' VALUE=''>";
    strflash += "<PARAM NAME='SWRemote' VALUE=''>";
    strflash += "<PARAM NAME='MovieData' VALUE=''>";
    strflash += "<PARAM NAME='SeamlessTabbing' VALUE='1'>";
    strflash += "<PARAM NAME='Profile' VALUE='0'>";
    strflash += "<PARAM NAME='ProfileAddress' VALUE=''>";
    strflash += "<PARAM NAME='ProfilePort' VALUE='0'>";
    strflash += "<PARAM NAME='_cx' VALUE='25400'>";
    strflash += "<PARAM NAME='_cy' VALUE='9260'>";
    if (vars) { strflash += "<PARAM NAME='FlashVars' VALUE='"+vars+"'>"; }
    
    strflash += "<embed src='" + movie + "' quality='high' wmode='transparent' ";
    strflash += "width='" + widths + "' height='" + heights + "' name='" + ids + "' align='middle' allowScriptAccess='sameDomain' ";
    strflash += "type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
    strflash += "</OBJECT>";

    document.write(strflash);
}

var prdtt_bak;
function addsub(ono, mode) {
	if (prdtt_bak) {
		var old = document.getElementById("subdesc_"+prdtt_bak);
		old.style.display = "none";
	}

	var obj = document.getElementById("subdesc_"+ono);
	obj.style.display = (mode == 1) ? "block" : "none";
	prdtt_bak = ono;
}




