function ab_popup(theimage)
{


  var w=200;
  var h=200;
  var x=(screen.width-w)/2;
  var y=(screen.height-h)/2;
  var chrome = "width=300,height=470,left=" + x + ",top=" + y;
  var htmlstr="<html><head><title>Glassworks</title></head><body leftmargin=0 topmargin=5 onBlur='abpopup.focus();'><p align='center'><img src='images2/" + theimage + ".jpg'></body><html>";

  var abpopup = window.open('', 'ab_popup_image', 'width=375,height=300, scrollbars="no"'); 
  
  abpopup.document.open();
  abpopup.document.write (htmlstr);
  abpopup.document.close();

  abpopup.focus();

}


function ab_popup_link(thelink)
{


  var w=200;
  var h=200;
  var x=(screen.width-w)/2;
  var y=(screen.height-h)/2;
  //var chrome = "width=300,height=470,left=" + x + ",top=" + y;
  //var htmlstr="<html><head><title>Brewer</title></head><body leftmargin=0 topmargin=5 onBlur='abpopup.focus();'><p align='center'><img src='images/" + theimage + ".jpg'></body><html>";

  var abpopup_link = window.open(thelink, 'ab_popup_link', 'width=620,height=656, scrollbars=yes'); 
  
  //abpopup_link.document.location('http://www.google.co.uk');
  //abpopup.document.write (htmlstr);
  abpopup_link.document.close();

  abpopup_link.focus();

}


function openBrWindow(theURL,winName,features) { //v2.0
  var aw= window.open(theURL,winName,features);
  aw.focus();
}