function PlayMusic(id){
window.open( 'playmusic.asp?id='+id,'cnmusiclisten','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=470,height=485');
} 
function LyricSee(id)
{ 
window.open('playwords.asp?id='+id,'_blank','width=600,height=502'); 
}
function DownLoad(id)
{ 
window.open('download.asp?id='+id,'_blank','width=600,height=295'); 
}
function PlayRing(id)
{
window.open('playring.asp?id='+id,'ShowPlayRing','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=470,height=324');
}
function DownRing(id)
{ 
window.open('downring.asp?id='+id,'_blank','width=600,height=295'); 
}
function Ring(id)
{ 
window.open('ringdown.asp?id='+id,'_blank','width=402,height=332'); 
}
function CheckOthers(form)
{
	for (var i=0;i<form.elements.length;i++)
	{
		var e = form.elements[i];
//		if (e.name != 'chkall')
			if (e.checked==false)
			{
				e.checked = true;// form.chkall.checked;
			}
			else
			{
				e.checked = false;
			}
	}
}

function CheckAll(form)
{
	for (var i=0;i<form.elements.length;i++)
	{
		var e = form.elements[i];
//		if (e.name != 'chkall')
			e.checked = true// form.chkall.checked;
	}
}