<!--
if ( navigator.appName == "Netscape" ){
	navigator.plugins.refresh();
	document.write("<" + "applet MAYSCRIPT Code=NPDS.npDSEvtObsProxy.class" )
	document.writeln(" WIDTH=5 HEIGHT=5 NAME=appObs> </applet>")
} 

function vol_up(){
	volume=MTVPlay.volume;
	if (volume==+2500){
		return false;
	}else{
		MTVPlay.volume=volume+250;
		volume=MTVPlay.volume;
	}
}

function vol_down(){
	volume=MTVPlay.volume;
	if (volume==-2500){
		return false;
	}else{
		MTVPlay.volume=volume-250;
		volume=MTVPlay.volume;
	}
}

function muteoff(){
	MTVPlay.mute=false;
}

function mute(){
	MTVPlay.mute=true;
}


function ff(){
	MTVPlay.next();
}


function pre(){
MTVPlay.previous();
}

function replay(){
	MTVPlay.playcount=0;
}

function replayoff(){
	MTVPlay.playcount=1;
}

function play(){
	if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
		MTVPlay.Play();
	} else {
		document.MTVPlay.Play();
	}
}

function pause(){
	if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
		if (MTVPlay.PlayState == 2){
			MTVPlay.Pause();
		} else {
			if (MTVPlay.PlayState == 1) {
				MTVPlay.Play();
			}
		}
	} else {
		document.MTVPlay.Pause();
	}
}

function stop(){
	if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
		MTVPlay.Stop();
		MTVPlay.CurrentPosition=0;
	} else {
		document.MTVPlay.Stop();
		document.MTVPlay.CurrentPosition=0;
	}
}

function muteClick(){
	if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
		bMuteState = MTVPlay.Mute;
	} else {
		bMuteState = MTVPlay.GetMute();
	}
	if (bMuteState == true) {
		MTVPlay.value="Mute";
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			MTVPlay.Mute = false;
		} else {
			MTVPlay.SetMute(false);
		}
	} else {
		MTVPlay.value="Un-Mute";
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			MTVPlay.Mute = true;
		} else {
			MTVPlay
		}
	}
}

function fs(){
	MTVPlay.DisplaySize = 3;
	MTVPlay.Play();
	MTVPlay.focus();
}
//-->

/*
play()		- Àç»ý
pause()		- ÀÏ½ÃÁ¤Áö
stop()		- Á¤Áö
replayoff() - ¹Ýº¹Ãë¼Ò
replay()	- ¹Ýº¹
fs()		- ÀüÃ¼È­¸é
muteClick() - ¼Ò¸®Á×ÀÌ±â
vol_down()	- ¼Ò¸®³·Ãã
vol_up()	- ¼Ò¸®³ôÀÓ
*/
