  var ucuoPopups    = new Array();

  function ucuoPopup( page, width, height, scrollbars, resizable, standalone )
  {
    if (typeof resizable == 'undefined') {
		var resizable = 'no';
    }

    var popupId = new Date().getMilliseconds();

    var pName  = "ucuoPopup"+popupId;
    var params = "width="+width+",height="+height+",location=no,menubar=no,resizable=no,scrollbars="+scrollbars+",status=yes,toolbar=no,resizable="+resizable;

    if (typeof onBeforePopup != 'undefined') {
            onBeforePopup();
    }

    ucuoPopups[popupId] = window.open( page, pName, params );
  }

  function ucuoImagePopup( src, width, height, scrollbars, resizable )
  {
    if (typeof resizable == 'undefined') {
		var resizable = 'no';
    }

    var popupId = new Date().getMilliseconds();

    var pName  = "ucuoPopup"+popupId;
    var params = "width="+width+",height="+height+",location=no,menubar=no,resizable=no,scrollbars="+scrollbars+",status=no,toolbar=no,resizable="+resizable;

    if (typeof onBeforePopup != 'undefined') {
            onBeforePopup();
    }

    ucuoPopups[popupId] = window.open( '', pName, params );
   	ucuoPopups[popupId].document.body.style.padding='0';
   	ucuoPopups[popupId].document.body.style.margin='0';
   	ucuoPopups[popupId].document.body.style.background='#333';
   	ucuoPopups[popupId].document.body.innerHTML =
   	'<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">'+
   		'<tr>'+
   			'<td align="center" valign="middle">'+
   				'<img src="'+src+'" alt="" border="0" style="cursor:pointer;" title="Klicken zum Schliessen / Click to close" onclick="window.close();" />'+
   			'</td>'+
   		'</tr>'+
   	'</table>';
  }