// JavaScript Document
function searchLyrics(q)
{
if(document.getElementById(q).value=='')
{
	alert("Please Enter Query");
	document.getElementById(q).focus();
	return false;

}
else
{
	url='';
	if(document.getElementById('searchby').value==1)
	url="artist_letter.php";
	if(document.getElementById('searchby').value==2)
	url="album_letter.php";
	if(document.getElementById('searchby').value==3)
	url="song_letter.php";
	//document.location=url;
	document.form.action=url;
	document.form.submit();

	//alert(url);
	//document.location=url;
			//return true;
}
}


function validateComment()
{
if(commentForm.user.value == "")
{
	alert("Please Enter Your Name");
	commentForm.user.focus();
	return(false);
}
if(commentForm.comment.value == "")
{
	alert("Please Enter comments");
	commentForm.comment.focus();
	return(false);
}
}

