function $(id)   { return document.getElementById(id); }

function ie_min_width()
{ 
  if (/MSIE 6.+Win/.test(navigator.userAgent))
  {
    sObj       = document.getElementsByTagName("body")[0].style; 
    sObj.width = (document.documentElement.clientWidth < 1000 ) ? "880" : "auto"; 
  }

  if (/MSIE 5.+Win/.test(navigator.userAgent))
  {
    sObj = document.getElementsByTagName("body")[0].style; 

    if( document.body.clientWidth < 1000 )
      document.getElementById("page").style.width = "880px" ;
    else
      document.getElementById("page").style.width = "100%" ;
  }
} 

if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) 
{
//  window.attachEvent("onload",   ie_min_width);
//  window.attachEvent("onresize", ie_min_width);
}

function where2buy_change_countries( s )
{
  var selects = $('lshopscities').getElementsByTagName('SELECT');

  for (var i=0; i< selects.length; i++) 
    selects[i].style.display = 'none';

  if( s.options[s.selectedIndex].value > 0)
    $('lsci'+s.options[s.selectedIndex].value).style.display = 'block';
}

function where2buy_change_cities( s )
{
  if( s.options[s.selectedIndex].value > 0)
    $('formleftwhere2buy').submit();
}

