var top_position=123;
var left_position=5;


document.write('<DIV style="position: absolute; top: '+top_position+'; left: '+left_position+'; display: none;" id="open_menu_table">');
document.write('<table border="0" cellpadding="1" cellspacing="0" width="440" bgcolor="#4D8DD5">');
document.write('<tr><td>');
document.write('   <table border="0" cellpadding="2" cellspacing="0" width="100%">');
document.write('     <tr>');
document.write('       <td>&nbsp;&nbsp;<a href="http://open.by/" style="text-decoration: none;"><span style="font-size: 13; font-weight: bold; color: #ffffff; text-decoration: none;">www.open.by</span></a></td>');
document.write('       <td align="right"><img src="http://news.by/pics/om_close.gif" border="0" style="cursor: pointer;" onClick="open_menu();"/></td>');
document.write('     </tr>');
document.write('   </table>');
document.write('</td></tr>');
document.write('<tr><td>');

document.write('<iframe width=440 height=300 src="http://news.by/menu.html" framespacing="0" frameborder="no" scrolling="no" allowtransparency="true"></iframe>');
document.write('</td></tr></table>');
document.write('</div>');

function open_menu(){
   if(document.getElementById('open_menu_table').style.display=='none'){
      document.getElementById('open_menu_table').style.display='block';
     if (document.getElementById('guest_div')){
      document.getElementById('guest_div').style.display='none';
     }
   }else{
   document.getElementById('open_menu_table').style.display='none';
   if (document.getElementById('guest_div')){
      document.getElementById('guest_div').style.display='block';
   }
   }
   return false;
}


