function framework(station,live) {
		if (station) {
			parent.content.location.replace('/players/' + station + '/content.html');
			parent.playerheader.location.replace('/players/' + station + '/' + station + '_top.html');
			parent.advertising.location.replace('/players/' + station + '/advertising.html');
			if (live) {
				 parent.functions.location.replace('/cgi-bin/nowplaying.pl?station=' + station);
			} else {
				parent.functions.location.replace('/players/' + station + '/function.html');
			}
		}
}


