function radio(id) {
	var intWidth = 420;
	var intHeight = 550;
	var intTop = (screen.height - intHeight) / 2;
	var intLeft = (screen.width - intWidth) / 2;
	wndwPopup = window.open('../radio/?id='+id,'radio','width='+intWidth+', height='+intHeight+', top='+intTop+', left='+intLeft+', scrollbars=yes, resizable');
	wndwPopup.focus();
}

