function image_over(obj)
{
  obj.src = obj.src.substring(0, obj.src.length - 4) + '_o.gif';
}
function image_out(obj)
{
  obj.src = obj.src.substring(0, obj.src.length - 6) + '.gif';
}
function open_window(url, name, width, height)
{
  window.open(url, name,
    'menubar=0,toolbar=0,location=0,resizable=0,scrollbars=1,' +
    'directories=0,width=' + width + ',height=' + height + ',left=' +
    (screen.width-width)/2 + ',top=' + (screen.height-height)/2
  );
}
function open_order(code)
{
  open_window('?m=order&n=' + code, 'order', 520, 400);
  return(false);
}
function open_affl_order(code,affl)
{
  open_window('http://www.sms365.lv/?m=order&n=' + code + '&affl=' + affl, 'order', 520, 400);
  return(false);
}
