function OpenMenuBlock()
{
    document.write( '<table cellspacing="0" cellpadding="0" width="100%" border="0" class="menublock">' );
    document.write( '<tr>' );
    document.write( '<td class="c1"></td>' );
    document.write( '<td class="c2"></td>' );
    document.write( '<td class="c3"></td>' );
    document.write( '</tr>' );

    document.write( '<tr>' );
    document.write( '<td class="c4" valign="top"><img src="/wmedia/img/menu/mf4o.gif" width="5" height="78" /></td>' );
    document.write( '<td class="c5">' );
}

function CloseMenuBlock()
{
    document.write( '</td>' );
    document.write( '<td class="c6" valign="top"><img src="/wmedia/img/menu/mf6o.gif" width="5" height="78" /></td>' );
    document.write( '</tr>' );

    document.write( '<tr>' );
    document.write( '<td class="c7"></td>' );
    document.write( '<td class="c8"></td>' );
    document.write( '<td class="c9"></td>' );
    document.write( '</tr>' );

    document.write( '</table>' );
}



function OpenMenuSubBlock()
{
    document.write( '<table cellspacing="0" cellpadding="0" width="100%" border="0" class="menusubblock">' );
    document.write( '<tr>' );
    document.write( '<td class="cin1"></td>' );
    document.write( '<td class="cin2"></td>' );
    document.write( '<td class="cin3"></td>' );
    document.write( '</tr>' );

    document.write( '<tr>' );
    document.write( '<td class="cin4"></td>' );
    document.write( '<td class="cin5">' );
}

function CloseMenuSubBlock()
{
    document.write( '</td>' );
    document.write( '<td class="cin6"></td>' );
    document.write( '</tr>' );

    document.write( '<tr>' );
    document.write( '<td class="cin7"></td>' );
    document.write( '<td class="cin8"></td>' );
    document.write( '<td class="cin9"></td>' );
    document.write( '</tr>' );

    document.write( '</table>' );
}

/**
 * Добавление в избранное
 * @access public
 * @return void
 **/
function getBrowserInfo() {
 var t,v = undefined;
 if (window.opera) t = 'Opera';
 else if (document.all) {
  t = 'IE';
  var nv = navigator.appVersion;
  var s = nv.indexOf('MSIE')+5;
  v = nv.substring(s,s+1);
 }
 else if (navigator.appName) t = 'Netscape';
 return {type:t,version:v};
}

function bookmark(a){
 var url = window.document.location;
 var title = window.document.title;
 var b = getBrowserInfo();
 if (b.type == 'IE' && 7 > b.version && b.version >= 4) window.external.AddFavorite(url,title);
 else if (b.type == 'Opera') {
  a.href = url;
  a.rel = "sidebar";
  a.title = url+','+title;
  return true;
 }
 else if (b.type == "Netscape") window.sidebar.addPanel(title,url,"");
 else alert("Нажмите CTRL-D, чтобы добавить страницу в закладки.");
 return false;
}

/**
 Search box
 **/
function search_form_value(){
	var curr_search_val=$("input[name='query']").val();
	if (curr_search_val=='поиск...') {$("input[name='query']").val('');}
}

function search_form_submit(){
	var curr_search_val=$("input[name='query']").val();
	if(curr_search_val=='поиск...'){$("input[name='query']").val('');return false;}
	if(curr_search_val==''){$("input[name='query']").val('поиск...');return false;}
	document.searchform.submit();
	return false;
}
