// R. Ian Lloyd search script. (C) 2003-2004 R. Ian Lloyd Productions.
function Search(){
	var SearchPage = 'search.php?';
	var Query = document.form1.query.value ;
	var AllURL = SearchPage + 'q=' + Query;
	var RightsURL = SearchPage + 'type=rights&q=' + Query;
	var RoyaltyURL = SearchPage + 'type=royalty&q=' + Query;
	
	if((document.form1.rights.checked==true) && (document.form1.royalty.checked==true)){
		top.location.href = AllURL;
	}
	if((document.form1.rights.checked==true) && (document.form1.royalty.checked==false)){
		top.location.href = RightsURL;
	}
	if((document.form1.rights.checked==false) && (document.form1.royalty.checked==true)){
		top.location.href = RoyaltyURL;
	}
	if((document.form1.rights.checked==false) && (document.form1.royalty.checked==false)){
		alert('Please choose either Rights Managed or Royalty Free, or both.');
	}
}