// JavaScript Document
function dl_jump(current_url,artist_value,media_value){
	window.location=current_url+'?artist='+artist_value+'&media='+media_value;
}
function tour_jump(current_url,var_name,var_value){
	window.location=current_url+'?'+var_name+'='+var_value;
}
function launch_player(db_val,id_val){
	if(db_val != 0 && id_val != 0){
		window.open("player/player.php?db="+db_val+"&id="+id_val,"Player","width=700,height=360");
	}else{
		window.open("player/player.php","Player","width=700,height=360");
	}
}
//MAILING LIST FORM
function ml_submit(){
	window.open('','MAILING_LIST','width=400,height=300,scrollbars=yes,resizable=yes');
	document.ml.action ="MAILINGLIST/index.php";
	document.ml.target ="MAILING_LIST";
	document.ml.submit();
}
//STREET TEAM FORM
function st_submit(){
	window.open('','STREET_TEAM','width=400,height=200,scrollbars=yes,resizable=yes');
	document.st.action ="PROCESS/street_team.php";
	document.st.target ="STREET_TEAM";
	document.st.submit();
}
//TOGGLE TOUR
function toggleTour(toggle_id){
	if(document.getElementById(toggle_id).style.display=='block'){
		document.getElementById(toggle_id).style.display='none';
	}else{
		document.getElementById(toggle_id).style.display='block';
	}
}