function searchCollection() {
	var myInput = $('#full_text_field').val();
	
	if($('#full_text_field').val() ) {
		window.open("?service=ExternalSearch&module=collection&viewType=detailList&fulltext=" + myInput, "_self");
	}
}

function searchArtist() {
	var myInput = $('#full_text_field').val();
	if($('#full_text_field').val() ) {
		window.open("?service=ExternalSearch&module=artist&viewType=simpleList&fulltext=" + myInput, "_self");
	}
}