// JavaScript Document
function openRadio(level) 
{

	if (level == null) {
		file = "../onair.php";
	}
	else if (level == "root") {
		file ="onair.php";
	}
	
	window.open(file, "DdeeRadio", "status=no,location=no,toolbar=no,scrollbars=yes,width=695,height=850");
}