function PlayClick(){
	document.WMPlay.Play();
}

function PauseClick(){
	numero = 1;
	document.WMPlay.Stop();
	if (navigator.appName.indexOf('Netscape') != -1) {
		document.WMPlay.SetCurrentPosition(0);
	} else {
		document.WMPlay.CurrentPosition = 0;
	}
}

function StopClick(){
	document.WMPlay.Stop();
}

function UpVolumeClick() {
	if (document.WMPlay.Volume <= -300)
	document.WMPlay.Volume = document.WMPlay.Volume + 300;
}

function DownVolumeClick() {
	if ( document.WMPlay.Volume >= -8000)
	document.WMPlay.Volume = document.WMPlay.Volume - 300;
}

//incio da funo de substituir texto dentro de input text
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}

function replaceText(thefield){
	if (thefield.value=="")
	thefield.value = thefield.defaultValue
}
//fim da funo de substituir texto dentro de input text

