$(document).ready(function() {
	$('.artistAutocomplete').autocomplete("/lib/objects.cfm", {minChars:2, max:40, selectFirst:false, autoFill:false}).result(function(event, data, formatted) {
		$('#searchtype').val('advancedartist');
	});	
	
	$('.ccType').click(function() {
		
		if(this.id === 'PP') {
			$('.cCard').hide();
		} else {
			$('.cCard').show();
		};
		
	});
	
});	

function poppy(theURL,winName,features) {
  window.open(theURL,winName,features);
}