<!--
function right(e) {
  if (navigator.appName == "Netscape" && (e.which == 3 || e.which == 2))
    return false;
  else if (navigator.appName == "Microsoft Internet Explorer" && (event.button == 2 || event.button == 3)) {
   // alert("no mouse")
	return false;
  }
return false;
}

//function keypressed(a) {
//  event.keyCode = 0;
//  alert('¹«·áÄÁÅÙÃ÷ ÀÔ´Ï´Ù.');
//  event.cancelBubble = true;
//  event.returnValue = false;
//}

document.onmousedown = right;
//document.onkeydown = keypressed;

function noStatus(){
  window.status = ''
  timer = setTimeout("noStatus()",0)
}

noStatus()

function MakeObject(src,width,height)
{
	document.write ('<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+'>')
	document.write ('<param name="movie" value='+src+'>')
	document.write ('<param name="quality" value="high">')
	document.write ('<embed src='+src+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+width+' height='+height+' border="0"></embed></object>')	
}

function MakeObjectVars(src,width,height,vars)
{
	document.write ('<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+'>')
	document.write ('<param name="movie" value="'+src+'">')
	document.write ('<param name="quality" value="high">')
	document.write ('<PARAM NAME=flashvars VALUE="'+vars+'">')
	document.write ('<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+width+' height='+height+' border="0"></embed></object>')	
}

function MakeObjectVod(src,vars)
{
	document.write ('<OBJECT  id=MSMPlayer  standby="Loading  Windows  Media  Player  components..." classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6  VIEWASTEXT> ')
	document.write ('<PARAM  NAME="URL"  VALUE="'+src+'">')
	document.write ('<PARAM  NAME="rate"  VALUE="1">')
	document.write ('<PARAM  NAME="balance"  VALUE="0">')
	document.write ('<PARAM  NAME="currentPosition"  VALUE="0">')
	document.write ('<PARAM  NAME="playCount"  VALUE="1">')
	document.write ('<PARAM  NAME="autoStart"  VALUE="1">')
	document.write ('<PARAM  NAME="currentMarker"  VALUE="0">')
	document.write ('<PARAM  NAME="invokeURLs"  VALUE="1">')
	document.write ('<PARAM  NAME="volume"  VALUE="70">')
	document.write ('<PARAM  NAME="mute"  VALUE="0">')
	document.write ('<PARAM  NAME="uiMode"  VALUE="'+vars+'">')
	document.write ('<PARAM  NAME="stretchToFit"  VALUE="1">')
	document.write ('<PARAM  NAME="enabled"  VALUE="1">')
	document.write ('<PARAM  NAME="enableContextMenu"  VALUE="0">')
	document.write ('<PARAM  NAME="fullScreen"  VALUE="0">')
	document.write ('<PARAM  NAME="SAMIFilename"  VALUE="">')
	document.write ('<PARAM  NAME="captioningID"  VALUE="">')
	document.write ('</OBJECT>')
}
//-->