<!--

function plugWire() {
//	window.alert(document.body.style.backgroundImage);
//	if (document.body.style.backgroundImage != 'url(images/bg_head_grad_plugged.png)' ) {
		document.body.style.backgroundImage="url(images/bg_head_grad_plugged.png)";
//	}
}

function unplugWire() {
//		window.alert(document.body.style.backgroundImage);

//	if (document.body.style.backgroundImage != 'url(images/bg_head_grad.png)' ) {	
//			window.alert("yes");

		document.body.style.backgroundImage='url(images/bg_head_grad.png)';
//	}
}

function showTitle(title) {
	
	var song_title = document.getElementById('song_title');

	if (song_title.innerHTML != title) {
		song_title.innerHTML = title;
	} // fi
}

function showBand(band) {
	
	var song_band = document.getElementById('song_band');
	
	if (song_band.innerHTML != band) {
		song_band.innerHTML = band;
	} // fi
	
}
// -->