//Function to change page from option list
function linkURL(URL) {
	
	if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;	
	return true;
}

//Function to open pop up window
function winOpener(theURL, winName, scrollbars, resizable, width, height) {
	
	winFeatures = 'left=' + (screen.availWidth-10-width)/2 + ',top=' + (screen.availHeight-30-height)/2 + ',scrollbars=' + scrollbars + ',resizable=' + resizable + ',width=' + width + ',height=' + height + ',toolbar=0,location=0,status=1,menubar=0'
  	window.open(theURL, winName, winFeatures);
}

function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}
function fRadioPlay()
{
if (nPlayRadio.options[nPlayRadio.selectedIndex].value!="#") 
window.open(nPlayRadio.options[nPlayRadio.selectedIndex].value,'PlayRadio','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=400,height=300');
}
function fNewspapersPlay()
{
if (nPlayNewspapers.options[nPlayNewspapers.selectedIndex].value!="#") 
window.open(nPlayNewspapers.options[nPlayNewspapers.selectedIndex].value,'PlayNewspapers','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
}