// JavaScript Document
function clearDefault(el) {
  if (el.defaultValue == el.value) el.value = ""
}
function goToURL() { //v3.0
  var i, args=goToURL.arguments; document.returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function addToCart (MusicID){
	MusicID = document.musicList[MusicID].value;
	MusicID = parseInt(MusicID);
	SetCookie(MusicID);
	var feedback = "Item " + MusicID;
	feedback += " has been added to your wanted list.";
	feedback += " Please click 'Check Out' when finished."
	alert(feedback);
}
function checkOut(){
	window.location.href = "listing7.5.html";
}
function validate_form ( ){
    valid = true;
    if ( document.quickSearchBox.quickSearch.value == "" ){
        alert ( "Please enter an artist or title" );
        valid = false;
    }
    return valid;
}
