function showImage(_href)
{
//	alert(_href);
    window.showModelessDialog(_href, '', 'dialogHeight:500px; dialogWidth:600px; center:yes; help:no; resizable:yes; scroll:yes; status:no, unadorned:yes');
//    window.showModelessDialog(serverName + 'galery/galery_show_image/' + _href.replace(/\//g, '+'), '', 'dialogHeight:500px; dialogWidth:600px; center:yes; help:no; resizable:yes; scroll:yes; status:no, unadorned:yes');
    return false;
} 
// ********************************************************************
if (serverName && document . getElementsByName('gImage')) {
    var _images = document . getElementsByName('gImage');
    for (var i = 0; i < _images . length; i ++)
    _images . item(i) . onclick = new Function ('return showImage(this.href)');
}