<!--

var neues;
var didopen=false;

function openPaymentPopup(url) { 
  newwindow = window.open(url, 'callandpay', 'height=404,width=320,resizable=no,menubar=no,status=no,location=no,toolbar=no,titlebar=no,scrollbars=no,directories=no'); 
  if (window.focus) {newwindow.focus();} 
}

function pic(theURL,features) { 
    if  (didopen)  neues.close();
	didopen=true;
 neues = window.open(theURL,"displaywindow",features);
}

function bild(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "left=10,top=10,width=1000,height=950,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"displaywindow",features);
}

function member_label_play(theURL,winName) { 
   if (didopen)  neues.close();
  	didopen=true;
   features = "left=200,top=200,width=640,height=400,scrollbars=yes,resizable=yes";
   neues = window.open(theURL,"displaywindow",features);
}

function myplay(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "left=200,top=200,width=640,height=600,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"displaywindow",features);
}

function mywindow(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "left=200,top=200,width=250,height=250";
 neues = window.open(theURL,"displaywindow",features);
}

function bill4net(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "left=1,top=1,width=980,height=800,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"displaywindow",features);
}

var thumb = null;
function showThumbnail(which,e)  {
  thumb = document.getElementById('thumb');
  evt = window.event;
		if ((evt.clientX + thumb.style.pixelWidth) > (document.body.clientWidth)) {
		  thumb.style.pixelLeft = (evt.clientX + document.body.scrollLeft) - thumb.style.pixelWidth;
  } else { thumb.style.pixelLeft = evt.clientX + document.body.scrollLeft; }
  if ((evt.clientY + thumb.clientHeight) > (document.body.clientHeight)) {
 	  thumb.style.pixelTop = (evt.clientY + document.body.scrollTop) - thumb.clientHeight;
  } else { thumb.style.pixelTop = evt.clientY + document.body.scrollTop; }
  thumb.innerHTML        = '<img src="' + which + '" width="250">';
  thumb.style.visibility = 'visible';
}

function closeThumbnail()  {
    if( thumb ) thumb.style.visibility = 'hidden';
}

//-->
