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;
}

// opens a new sized window for Item Inquiry form
function openInquiryWindow(ThumbType, InventoryID, GallerySendTo) {
	var urlstring = "submitquestion/submitquestion.cfm?ThumbType=" + ThumbType + "&InventoryID=" + InventoryID + "&GallerySendTo=" +GallerySendTo;
	window.open(urlstring, "SubmitQuestion","toolbar=no,scrollbars=no,width=300,height=400,left=10,top=10");
}

function PopUp(url, pheight, pwidth) {
	heightWidthText = 'height=' + pheight + ', ' + 'width=' + pwidth;
	window.open(url,"MyPopup", heightWidthText);
}

var imgmessage="Copyrighted.  Do not copy.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(imgmessage);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(imgmessage);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;