<!--

if (document.images) {

 aboutuson = new Image();
 aboutuson.src = "/images/menu_aboutus_on.gif";

 aboutusoff = new Image();
 aboutusoff.src = "/images/menu_aboutus_off.gif";

 ourwineson = new Image();
 ourwineson.src = "/images/menu_ourwines_on.gif";

 ourwinesoff = new Image();
 ourwinesoff.src = "/images/menu_ourwines_off.gif";

 kustomserieson = new Image();
 kustomserieson.src = "/images/menu_kustomseries_on.gif";

 kustomseriesoff = new Image();
 kustomseriesoff.src = "/images/menu_kustomseries_off.gif";

 wineclubon = new Image();
 wineclubon.src = "/images/menu_wineclub_on.gif";

 winecluboff = new Image();
 winecluboff.src = "/images/menu_wineclub_off.gif";

 newseventson = new Image();
 newseventson.src = "/images/menu_newsevents_on.gif";

 newseventsoff = new Image();
 newseventsoff.src = "/images/menu_newsevents_off.gif";

 distributorson = new Image();
 distributorson.src = "/images/menu_distributors_on.gif";

 distributorsoff = new Image();
 distributorsoff.src = "/images/menu_distributors_off.gif";

 wineshopon = new Image();
 wineshopon.src = "/images/menu_wineshop_on.gif";

 wineshopoff = new Image();
 wineshopoff.src = "/images/menu_wineshop_off.gif";

 contactuson = new Image();
 contactuson.src = "/images/menu_contactus_on.gif";

 contactusoff = new Image();
 contactusoff.src = "/images/menu_contactus_off.gif";

 homeon = new Image();
 homeon.src = "/images/menu_home_on.gif";

 homeoff = new Image();
 homeoff.src = "/images/menu_home_off.gif";

 }

function popupImage(image, width, height, title, alt)
{
        lPos = (screen.width) ? (screen.width-width)/2 : 0;
        tPos = (screen.height) ? (screen.height-height)/2 : 0;
        title = title ? title:'Image Popup';
        alt = alt ? alt:'';

        newWin = this.open('', '_blank', "toolbar=no,width="+width+",height="+height+",left="+lPos+",top="+tPos+",directories=no,status=no,scrollbars=no,resize=no,menubar=no");
        var tmp = newWin.document;

        tmp.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1-transitional.dtd">');

        tmp.write('<html xmlns="http://www.w3.org/1999/xhtml"><head><title>'+title+'</title>');
        tmp.write('<style type="text/css">* {padding:0px; margin:0px;}</style></head>');
        tmp.write('<body><img src="'+image+'" width="'+width+'" height="'+height+'" alt="'+alt+'" /></body></html>');

        tmp.close();
        newWin.focus();
}
