function changeLocationBySelect(id)
{
  var s = document.getElementById(id);
  document.location = s.options[s.selectedIndex].value;
}

function showWindowWithImages(type, id)
{
  var url = '?m='+type+'&a=show_images&id='+id;
  window.open(url,'rmvb'+id, 'left=20,top=20,width=450,height=500,toolbar=1,menubar=1,scrollbars=1');
}

function _changeBigImg(name)
{
  var bigImg = document.getElementById('bigImg');
  bigImg.src = 'images/auto/big/'+name+'.jpg';
}

function showBidPrintWindow(link)
{
window.open(link,'x',
'left=20,top=20,width=745,height=500,toolbar=1,menubar=1,scrollbars=1');
}

function showWindow(width, height, link)
{
window.open(link,'x',
'left=20,top=20,width='+width+',height='+height+',toolbar=1,menubar=1,scrollbars=1');
}




