function switchMenu (id) {
    
  var positions=$('menuLink_'+id).positionedOffset();
  
  $('menuBlock_'+id).setStyle({
    top: (positions['top'])+42 + (Prototype.Browser.IE ? -10 : 0) +'px',
    left: (positions['left'])+'px'
  });
  
  $('menuBlock_'+id).show();
}

function checkForm(){
  if ( $F('name').length < 3 || $F('contact').length < 5){
    alert("Пожалуйста, заполните поля «Ваше имя» и «Контакты»!");
    return false;
  }
  
  return true;
}
