function displayImage( image, w, h,name )
{
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  var tw = (w/1 + 10)/1;
  var th = (h/1 + 10)/1;
  winprops = 'height='+th+',width='+tw+',top='+wint+',left='+winl+',scrollbars=no,toolbar=no'
  
  msgWindow = window.open( '',name,winprops )
  msgWindow.document.writeln("<HTML><HEAD><TITLE>© Copyright MountainBike Club De Herders</TITLE></HEAD>" )
  
  msgWindow.document.writeln("<BODY leftMargin='3' topMargin='3' MARGINWIDTH='3' MARGINHEIGHT='3'>" )
  msgWindow.document.writeln("<table width="+w+" border=0 cellpadding=0 height="+h+">" )
  msgWindow.document.writeln("<tr>" )
  msgWindow.document.writeln("<td align=center valign=middle><img border=1 src='"+image+"'></a>" )
  msgWindow.document.writeln("</tr>" )
  msgWindow.document.writeln("</table>" )
  msgWindow.document.writeln("</BODY></HTML>" )
  
  if (parseInt(navigator.appVersion) >= 4) { msgWindow.window.focus(); }
}

function displayImageHS( image, w, h,name )
{
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  var tw = (w/1 + 10)/1;
  var th = (h/1 + 35)/1;
  winprops = 'height='+th+',width='+tw+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no'
  
  msgWindow = window.open( '',name,winprops )
  msgWindow.document.writeln("<HTML><HEAD><TITLE>© Copyright MountainBike Club De Herders</TITLE></HEAD>" )
  
  msgWindow.document.writeln("<BODY leftMargin='3' topMargin='3' MARGINWIDTH='3' MARGINHEIGHT='3'>" )
  msgWindow.document.writeln("<table width="+w+" border=0 cellpadding=0 height="+h+">" )
  msgWindow.document.writeln("<tr>" )
  msgWindow.document.writeln("<td align=center valign=middle><img border=1 src='"+image+"'></a>" )
  msgWindow.document.writeln("</tr>" )
  msgWindow.document.writeln("</table>" )
  msgWindow.document.writeln("</BODY></HTML>" )
  
  if (parseInt(navigator.appVersion) >= 4) { msgWindow.window.focus(); }
}
