function PageChanger(page) {	document.location=page;}var win=null;function NewWindow(url,winName){	myleft=(screen.width)?(screen.width-700)/2:100;	mytop=(screen.height)?(screen.height-575)/2:100;	settings="width=715,height=625,top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";	win=window.open(url,winName,settings);	win.focus();}function RadioWindow(url,winName){	myleft=(screen.width)?(screen.width-250):100;	mytop=0 	// mytop=(screen.height)?(screen.height-250):100;	settings="width=250,height=250,top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";	win=window.open(url,winName,settings);	win.focus();}function TVWindow(url,winName){	myleft=(screen.width)?(screen.width-700)/2:100;	mytop=(screen.height)?(screen.height-575)/2:100;	settings="width=450,height=350,top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";	win=window.open(url,winName,settings);	win.focus();}