		function CWplay( filename, comment ) {
			var comment = eval("document.all['"+ comment +"'].value" );
			document.all["comment"].innerText = comment;
			var filePath = document.all["path"].value + filename;
			document.all["mPlayer"].Filename = filePath;
			var filePath = document.all["path"].value + filename;

			if (comment.substr(13, 5) == '000000') {document.getElementById("downBTN").width=0;}
			else 
			try {
				document.all['mPlayer'].play();

			} catch (exception) {}
		}



		function fncDownLoad(){
			alert(document.all["mPlayer"].Filename);
			document.download.filename.value = document.all["mPlayer"].Filename;		
			document.download.submit();
		}