function ChangeOption(selectedOption){
 document.getElementById('moscow').style.display = "none";
 document.getElementById('s_peterburg').style.display = "none";
 if(selectedOption == 'moscow'){
  document.getElementById('moscow').style.display = "";
  document.getElementById('m_but').className = "m_but_1";
  document.getElementById('sp_but').className = "sp_but_2";
 }
 if(selectedOption == 's_peterburg'){
  document.getElementById('s_peterburg').style.display = "";
  document.getElementById('m_but').className = "m_but_2";
  document.getElementById('sp_but').className = "sp_but_1";
 }
}

function DisplayContacts()
{
 document.write('<style type="text/css" media="all">@import url(\'contacts_js_on.css\');</style>');
 document.write('<!--[if gte IE 6]><style type="text/css" media="all">@import url(\'contacts_js_on_ie_fix.css\');</style><![endif]-->');
 document.write('  <div id="contacts">');
 document.write('   <a class="m_but_1" id="m_but" href="javascript:ChangeOption(\'moscow\');"><b>Москва</b></a>');
 document.write('   <a class="sp_but_2" id="sp_but" href="javascript:ChangeOption(\'s_peterburg\');"><b>Санкт-петербург</b></a>');
 document.write('   <div id="moscow" class="contact">');
 document.write('<noindex>  <span id="icq1">274488237 - Игорь</span><span id="icq2">317910820 - Виктория</span><span id="icq3">450932675 - Константин</span>');
 document.write('  <span id="skype"><a href="callto:innovactech">innovactech</a></span>');
 document.write('  <span id="email"><a style="cursor: pointer;" onclick="open_info()" onmouseover="this.style.cursor=\'pointer\'; window.status=\'Задать вопрос\'" onmouseout="window.status=\'\'">написать нам</a></span>');
 document.write('  <span id="shema"><a href="/sxem.php" target="_blank">схема проезда</a></span>');
 document.write('  <span id="graftitle">график работы:</span>');
 document.write('  <span id="grafik"><a href="#" title="Часы работы в будни (без обеда)">9:00 - 20:00</a><br/><a href="#" title="Часы работы в выходные (без обеда)">11:00 - 17:00</a></span>');
 document.write('  <div id="phone">телефон в Москве <span id="phone">+7(495) 647-14-43</span></div>');
 document.write('  </noindex>');
 document.write('   </div>');
 document.write('   <div id="s_peterburg" class="contact" style="display: none">');
 document.write('  <noindex>');
 document.write('  <span id="icq1">ICQ: 460884942</span>');
 document.write('  <span id="skype2"><a href="callto:innovactech">innovactech</a></span>');
 document.write('  <span id="email2"><a style="cursor: pointer;" onclick="open_info()" onmouseover="this.style.cursor=\'pointer\'; window.status=\'Задать вопрос\'" onmouseout="window.status=\'\'">написать нам</a></span>');
// document.write('  <span id="shema2"><a href="/sxem_sp.php" target="_blank">схема проезда!!</a></span>');
 document.write('  <span id="graftitle2">график работы:</span>');
 document.write('  <span id="grafik2"><a href="#" title="Часы работы в будни (без обеда)">10:00 - 19:00</a><br/><a href="#" title="Часы работы в выходные (без обеда)">выходной</a></span>');
 document.write('  <div id="phone">телефон в Санкт-Петербурге <span id="phone">+7(812) 703-72-34</span></div>');
 document.write('  </noindex>');
 document.write('   </div>');
 document.write('  </div>');
}

function open_info()
{
 newWin = window.open('/send_email.php','','width=860, height=450, directories=no, location=no, menubar=no, resizeble=no, scrollbars=no, status=no, toolbar=no, left=200, top=200');
}

var IE='\v'=='v';
if(IE)
 document.write('<style>.contact{margin-top: -1px;}</style>');
else
 document.write('<style>.contact{margin-top: 3px;}</style>');