function PopUp(w,h,loadinto,title,text,fw,fh) {

   url = 'http://www.angelink.ch/site_templates/content_popup.php?loadinto='+loadinto + '&title=' + title + '&text=' + text + '&imgwidth=' + fw + '&imgheight=' + fh;
   winName = 'PopUpWindow';

   toolbar = 0;
   directories = 0;
   status = 0;
   menubar = 0;
   scrollbars = 0;
   resizable = 0;
   loffset = 0;
   
   openquery = "width="+w+",height="+h+",toolbar="+toolbar+",directories="+directories+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",top=" +Math.round(((screen.height/2)-(h/1.5)))+ ",screenY=" +Math.round(((screen.height/2)-(h/1.5)))+ ",left=" +Math.round(((screen.width/2)-(w/2)+loffset))+ ",screenX=" +Math.round(((screen.width/2)-(w/2)));
   newwin = window.open(url,winName,openquery);
   newwin.focus();

}

function PopUp_test(w,h,loadinto,title,text,fw,fh) {

   url = 'http://www.angelink.ch/site_templates/content_popup.php?loadinto='+loadinto + '&title=' + title + '&text=' + text + '&imgwidth=' + fw + '&imgheight=' + fh;
   
   winName = 'PopUpWindow';

   toolbar = 0;
   directories = 0;
   status = 0;
   menubar = "no";
   scrollbars = "no";
   resizable = "no";
   loffset = 0;
   alert("test");
   openquery = "width="+w+",height="+h+",toolbar="+toolbar+",directories="+directories+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",top="+Math.round(((screen.height/2)-(h/1.5)))+",screenY="+Math.round(((screen.height/2)-(h/1.5)))+",left="+Math.round(((screen.width/2)-(w/2)+loffset))+",screenX="+Math.round(((screen.width/2)-(w/2)));
   alert(openquery);
   newwin = window.open(url,winName,openquery);
   newwin.focus();

}