function myplay(myform)
{
	
	var strCBValue = "";		
	for (var i=0;i<myform.elements.length;i++)  //用来历遍form中所有控件,
	{
		var e = myform.elements[i];
		if (e.Type="checkbox")					//当是checkbox时才执行下面
		{
			if(e.checked)						//当是checkbox被选取时才执行下面
			{
					strCBValue = strCBValue + e.value+"_";					
			}
			 
		}
	}
	
	if(strCBValue=="")
	{
		alert("请选择要播放的歌曲(可多选)");
		return;
	}
	else
	{
		window.open("Player.asp?id="+strCBValue,"666");
	}
}