
function show_contact_artist_box(){
	
	var aa = document.getElementById('contact_artist_box');
	
	if (aa.style.height == '18px' || aa.style.height == '') {
		
		aa.style.height = '270px';
		
	} else if (aa.style.height == '270px') {
		
		aa.style.height = '18px';
		
	}
	
}

function switch_artist_box(the_box) {
	
	var aa = document.getElementById('contact_artist_box');
	var bb = document.getElementById('report_artist_box');
	var cc = document.getElementById('tips_artist_box');
	
	if (the_box == 'contact_artist_box') {
		
		aa.style.display="block";
		bb.style.display="none";
		cc.style.display="none";
		
	} else if (the_box == 'report_artist_box') {
		
		aa.style.display="none";
		bb.style.display="block";
		cc.style.display="none";
		
	} else if (the_box == 'tips_artist_box') {
		
		aa.style.display="none";
		bb.style.display="none";
		cc.style.display="block";
		
	}
	
}
