function show_image(id, width, height) {

  var p, scrollbars = 'no';

  if (window.event.srcElement.tagName == "IMG" || window.event.srcElement.tagName == "img") {

    p = window.event.srcElement.parentNode;

    if (p.tagName=="A" || p.tagName=="a") {

      window.event.returnValue=false;
	  width += 50;
	  height += 100;
      if (width > screen.width - 200) {width = screen.width - 200; scrollbars = 'yes';}
      if (height > screen.height - 200) {height=screen.height - 200; scrollbars = 'yes';}
      window.open("http://www.drom.ru/images/?id=" + id + "&amp;w=" + width + "&amp;h=" + height, "", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars="+scrollbars+", resizable=yes,width="+width+",height="+height+",top=100,left=100");
      return false;

    }

  }

}



function show_image_catalog(set_id, photo_id, width, height) {

  var p, scrollbars = 'no';

  if (window.event.srcElement.tagName=="IMG" || window.event.srcElement.tagName=="img") {

    p=window.event.srcElement.parentNode;

    if (p.tagName=="A" || p.tagName=="a") {

      window.event.returnValue=false;
	  width += 50;
	  height += 100;
      if (width>screen.width-200) {width=screen.width-200; scrollbars='yes';}
      if (height>screen.height-200) {height=screen.height-200; scrollbars='yes';}
      window.open("http://www.drom.ru/images/?set_id="+set_id+"&photo_id="+photo_id, "", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars="+scrollbars+", resizable=yes,width="+width+",height="+height+",top=100,left=100");
      return false;

    }

  }

}



function show_image_sales(bull_id, photo_id, width, height, e) {

  var p, scrollbars = 'no';

  var windowevent = e || window.event;
  if (typeof windowevent != 'undefined' && windowevent.srcElement.tagName.toLowerCase()=="img") {

    p=windowevent.srcElement.parentNode;

    if (p.tagName=="A" || p.tagName=="a") {

    windowevent.returnValue=false;
	  width += 80;
	  height += 100;
      if (width>screen.width-200) {width=screen.width-200; scrollbars='yes';}
      if (height>screen.height-200) {height=screen.height-200; scrollbars='yes';}
      window.open("http://www.drom.ru/images/?id="+bull_id+"&n="+photo_id, "", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars="+scrollbars+", resizable=yes,width="+width+",height="+height+",top=100,left=100");
      return false;

    }

  }

}

