// JavaScript Document
function quicksearch()
{
var f = document.myForm;
if (f.Searchkey.value != "")
   window.location='quicksearch.php?Searchkey=' + f.Searchkey.value;
else
    alert ("Please type 1st 3 letters of the artist!!!");   
}
function quicksearch2()
{
var g = document.myForm2;
if (g.Searchkey2.value != "")
   window.location='quicksearch2.php?Searchkey2=' + g.Searchkey2.value;
else
    alert ("Please type 1st 3 letters of the Title!!!");   
}
function quicksearch3()
{
var h = document.myForm3;
if (h.Searchkey3.value != "")
   window.location='quicksearch3.php?Searchkey3=' + h.Searchkey3.value;
else
    alert ("Please select Genre!!!");   
}
function sample()
{
	if (document.contact.Fullname.value == "")
	{
	alert ("Name cannot be blank");
	return false;
	}
	if (document.contact.Email.value == "")
	{
	alert ("Please enter E-mail Address");
	return false;
	}
	if (document.contact.Feedback.value == "")
	{
	alert ("Please enter your feedback/comments");
	return false;
	}
	window.location='feedback.php';
	return true;
}