
var Fenster = null;
 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 */
	{
		alert("Please deaktivate the popup blocker for " + window.location.host);
	}
 }
 var site = "http://www.Club-Lounge-Radio.de/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 */
	{
		alert("Please deaktivate the popup blocker for " + window.location.host);
	}
 }