function openRadio(){
window.open('http://www.themusicfile.com/radio/index.html', 'mywindow', ',width=700,height=466,resizable=yes,scrollbars=no,menubar=no'); 
}

function tmfChangeInner(object,thetext,leftpos){
	if(document.getElementById){
		var arfboo = document.getElementById(object);
	} else if (document.all){
		var arfboo = document.object;
	}
	arfboo.innerHTML = thetext;
	arfboo.style.left = leftpos+'px';
}


function tmfSwitchMenuBox(ofirst,osecond){
	if(document.getElementById){
		var inav = document.getElementById(ofirst);
		var mubox = document.getElementById(osecond);
		var dabutton = document.getElementById('nav_switch');
	} else if (document.all){
		var inav = document.ofirst;
		var mubox = document.osecond;
		var dabutton = document.nav_switch;
	}
	if(mubox.style.display == 'none'){ 
		mubox.style.display = 'block';
		inav.style.display = 'none';
		dabutton.innerHTML = 'switch to \'in this issue\' view';
	} else { 
		mubox.style.display = 'none';
		inav.style.display = 'block';
		dabutton.innerHTML = 'switch to editing view';
	}
}

