// JavaScript Document
function musicframe(newstatus) {
	if(musicstatus != newstatus){
		musicstatus = newstatus;
		if(musicstatus == 'on'){
			window.location = 'http://www.elho.nl/website/index/top_music.htm';
		} else {
			window.location = 'http://www.elho.nl/website/index/top_nomusic.htm';
		}
	}
}