// JavaScript Document
/*
function Show_Song()
{
	document.getElementById('show_top_song').style.visibility = 'visible';
	document.getElementById('show_top_song').style.display = 'block';
	
	document.getElementById('hide_top_song').style.visibility = 'hidden';
	document.getElementById('hide_top_song').style.display = 'none';
	
	document.getElementById('show_id').style.backgroundColor = '#FF611F';
	document.getElementById('hide_id').style.backgroundColor = '#FFFFFF';
}
function Hide_Song()
{
	document.getElementById('hide_top_song').style.visibility = 'visible';
	document.getElementById('hide_top_song').style.display = '';

	document.getElementById('show_top_song').style.visibility = 'hidden';
	document.getElementById('show_top_song').style.display = 'none';
	
	document.getElementById('show_id').style.backgroundColor = '#FFFFFF';
	document.getElementById('hide_id').style.backgroundColor = '#FF611F';
}*/
function Show_Song()
{
	document.getElementById('show_id').style.visibility = 'visible';
	document.getElementById('show_id').style.display = 'block';
	
	document.getElementById('show_top_song').style.visibility = 'visible';
	document.getElementById('show_top_song').style.display = 'block';
	

	document.getElementById('hide_id').style.visibility = 'hidden';
	document.getElementById('hide_id').style.display = 'none';
	
	document.getElementById('hide_top_song').style.visibility = 'hidden';
	document.getElementById('hide_top_song').style.display = 'none';
}
function Hide_Song()
{
	document.getElementById('hide_id').style.visibility = 'visible';
	document.getElementById('hide_id').style.display = 'block';
	
	document.getElementById('hide_top_song').style.visibility = 'visible';
	document.getElementById('hide_top_song').style.display = 'block';

	document.getElementById('show_id').style.visibility = 'hidden';
	document.getElementById('show_id').style.display = 'none';
	
	document.getElementById('show_top_song').style.visibility = 'hidden';
	document.getElementById('show_top_song').style.display = 'none';
	
}
function View_All(str)
{
	with(document.frmSong)
	{
		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','','false','false');	
}
/*function All_Click(str)
{	
	with(document.frmSong)
	{
		Action.value = str;
		submit();
	}
}*/