// JavaScript Document
function Search_Click(frm)
{
	with(frm)
	{
		Action.value = 'Search';
		submit();
	}
}

// when All img click
function All_Click(str)
{
	//alert('hi');
	with(document.frmArtist)
	{
		Action.value = str;
		submit();
	}
}

//When Play button click for song
function Play(UsrId,SonId)
{		
	popupWindowURL('popup_song_play.php?id='+UsrId+'&sid='+SonId,'','530','336','','true','true');	
}

