<!--
//history.back()
 var Fenster = null;
	function backwards()
	{
	// wird 3 Sekunden nach hierGehtsLos() aufgerufen
	history.back();
	}
 function pre(meineSeite,meinName,w,h,scroll){
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ="height="+h+",width="+w+",top="+TopPosition+",left="+LeftPosition+",scrollbars="+scroll+",resizable=NO";
  Fenster = window.open(meineSeite,meinName,settings);
	if(Fenster == null)
	/* if the pointer to the window object in memory does not exist
	 or if such pointer exists but the window was closed */
	{
		document.write('<div style="background-color: #FFF6BF; border-top: 2px solid #FFD324; border-bottom: 2px solid #FFD324; margin: 10px auto; padding: 5px 20px 5px 45px; font-family:arial; font-size:14pt; font-weight:bold;">Please deaktivate the popup blocker for ' + window.location.host + '</div>');	
		window.setTimeout("backwards()", 14000);
	}
 }
 var site = "http://www.Club-Lounge-Radio.com/Club-Lounge-Radio.html?win=pop";
 function player(name,wi,he,scroll){
  LeftPosition = (screen.width) ? (screen.width-wi)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-he)/2 : 0;
  settings ="height="+he+",width="+wi+",top="+TopPosition+",left="+LeftPosition+",scrollbars="+scroll+",resizable=NO";
  Fenster = window.open(site,name,settings);
	if(Fenster == null)
	/* if the pointer to the window object in memory does not exist
	 or if such pointer exists but the window was closed */
	{
		document.write('<div style="background-color: #FFF6BF; border-top: 2px solid #FFD324; border-bottom: 2px solid #FFD324; margin: 10px auto; padding: 5px 20px 5px 45px; font-family:arial; font-size:14pt; font-weight:bold;">Please deaktivate the popup blocker for ' + window.location.host + '</div>');	
		window.setTimeout("backwards()", 14000);
	}
 }
player("CLR","313","250","NO");
// --> 
window.setTimeout("backwards()", 10000);
