
function SelectAll(oForm){
	for(var i=0;i<oForm.url.length;i++){
		oForm.url[i].checked=true;
	}
}

function TurnOver(oForm){
	for(var i=0;i<oForm.url.length;i++){
		oForm.url[i].checked=!oForm.url[i].checked;
	}
}

function PlaySelected(oForm){
	
	var strPlayList = "";
	var intPlayNum = 0;	
	if(oForm.url.length)
	{	
	    for(var i=0;i<oForm.url.length;i++)
	    {	    
		    if(oForm.url[i].checked==true)
	    	{
			    //arrPlayList[arrPlayList.length] = oForm.url[i].value
			    intPlayNum +=1;
			    strPlayList += oForm.url[i].value + ",";			    	    
		    }
	     }	
    }
    	
	if (intPlayNum == 0)
	    {
	    alert("还没有选择一首歌曲呀");
	    }
	    else
	    {
	        window.location.href="/Music/PlaySong.aspx?playList="+strPlayList;
	    }
	    
}

//搜索框
function searchkey(oform)
{
    if ( oform.txtkeys.value == "")
    {
        alert("请输入关键字");
    }
    else
    {
        if (oform.selectsearch.value == "0")
        {
            window.location.href = "SongSearch.aspx?k="+oform.txtkeys.value;
        }   
        if (oform.selectsearch.value == "1")
        {
            window.location.href = "SingerSearch.aspx?k="+oform.txtkeys.value;
        } 
        if (oform.selectsearch.value == "2")
        {
            window.location.href = "SpecialSearch.aspx?k="+oform.txtkeys.value;
        }  
    }
}

////document.write("<div align=center><iframe id='youday'  scrolling='no' marginheight=0 marginwidth=0  frameborder='0' width='960' height='80' src='http://code.aiqianming.cn/code/04151919252342008134.htm?id=04151919252342008134&webownerId=18546&childid=10000'></iframe></div>");

////document.write("<script id='youday' type='text/javascript' src='http://code.aiqianming.cn/js/button_13.js?webownerId=18546&childid=10000'></script>");



