<!--
  function turnon(elem){
	  var cpos = elem.src.indexOf('_');
	  elem.src = elem.src.substr(0,cpos) + '_on.gif';
	}
	
	function turnoff(elem){
	  var cpos = elem.src.indexOf('_');
	  elem.src = elem.src.substr(0,cpos) + '_off.gif';
	}

		var canSubmit = true;
		var isUsrModified = false;
		var strSearch1 = 'Please enter your comments here.  ';
		var strSearch2 = 'For online help or other input requiring a response, please visit Yahoo! Music Help using the link to the right.';
		
		function changeColor(curObj) {
			curObj.style.color = '#000000';
		}
		function setPreset() {
			document.aspnetForm.ctl00_FormBody_feedback.value = strSearch1 + '\n' + strSearch2;
		}
		
		function clearPassedString(cString, pString, addLength) {
			nSearchStrAt = cString.indexOf(pString);
			
			addLength = (document.all && (addLength != 0)) ? addLength : 1;
			
			if (nSearchStrAt > -1) {
				strPreText = cString.substring(0, nSearchStrAt);
				strPstText = cString.substring(nSearchStrAt + pString.length + addLength, cString.length);
				
				cString = strPreText + strPstText;
			}
			
			return cString;
		}
		
		function clearPreset() {
			if (!isUsrModified) {
				document.aspnetForm.ctl00_FormBody_feedback.value = '';
			} else {
				strEntrdText = document.aspnetForm.ctl00_FormBody_feedback.value;
				
				strEntrdText = clearPassedString(strEntrdText, strSearch1, 2);
				strEntrdText = clearPassedString(strEntrdText, strSearch2, 0);
				document.aspnetForm.ctl00_FormBody_feedback.value = strEntrdText;
				
				if (document.aspnetForm.ctl00_FormBody_feedback.createTextRange) { // handle IE
					var range = document.aspnetForm.ctl00_FormBody_feedback.createTextRange();
					range.moveStart('character', document.aspnetForm.ctl00_FormBody_feedback.value.length);
					range.select();
				}
			}
		}
		
		function localT()
		{
            now = new Date();
            var localtime = eval(now.getMonth() + 1) + '/' + now.getDate() + '/' + now.getFullYear() + ' ' + now.getHours() + ':' + now.getMinutes() + ':' + now.getSeconds();
            document.aspnetForm.localTime.value = localtime;
        }
		
		function openwindow()
{
	window.open("http://help.yahoo.com/l/us/yahoo/music/index.html","mywindow","menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,navigator=yes,location=yes,width=800,height=900");
}
-->