function EasySearchAbout() {
var agree=alert("Enter relevant words only.  You do not need to enter words like the, and or, etc. For most purposes you can use the menu to find what you need.");
if (agree)
return false ;
else
return false ;
}

function eMailPolicy() {
var agree=alert(" Submitting your email address will keep you informed about this artist's work. All email communications conform to opt-in/opt-out best practices. You can unsubscribe directly from any email or by clicking the unsubscribe button on this page.");
if (agree)
return false ;
else
return false ;
}

function unsubscribePolicy() {
var agree=confirm(" This will unsubscribe you to this artist.  Are you sure you wish to continue?");
if (agree)
return true ;
else
return false ;
}

function confirmation( message ) {
	var agree = confirm( message );
	if (agree) {
		return true;
	} else {
		return false;
	}
}

function locationUrl( urlloc ) {
	document.location = urlloc;
}

