	function Radio(){
		janela=window.open("radio.asp","","width=300,height=86,scrollbars=no")
		text = "Se a janela não estiver abrindo\ntalvez seja porque voce tenha um\nprograma bloqueador de pop-up!\nObservação » O windows XP service pack 2\nbloqueia pop-ups!";
		if(janela == null) { 
			alert(text); return; 
		}
		newWidth = ((screen.width - 300) / 2) ;
		newHeight = ((screen.height - 86) / 2) ;
		janela.moveTo(newWidth,newHeight);
	}
