$(document).ready(function() {
	$('.selectArtist').click(function() {
		transferdataout($(this).attr('id'),$(this).attr('title'));this.style.display='none';
		addDiv('new_artists','<div><b>'+$(this).attr('name')+'<b></div>');
		alert("Wurde hinzugefügt!");
		return false;
		});
		$('.selectArtistForArticle').click(function() {
		transferArtistArticle($(this).attr('id'),$(this).attr('title'));this.style.display='none';
			addDiv('new_artists','<div><b>'+$(this).attr('name')+'<b></div>');
		return false;
		});

});

function transferArtistArticle(id,type) {
	opener.document.getElementById('select_artists').value +=id+"_"+type+"|";
	alert("Wurde hinzugefügt! Sie können weitere Profile hinzufügen!");
}