<!--
function ShowPopup(popupURL) 
{
  // open the popup window
    var popup = window.open(popupURL,"Alfaleoaanb",'resizable=1,scrollbars=1,location=0,top=0,left=0,width=750,height=680');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {popup.location = popupURL; popup.focus(); }
}
;
// -->

