function confirmLink(theLink, theSqlQuery)
{
    var is_confirmed = confirm('Вы действительно хотите:\n' + theSqlQuery);
   if (is_confirmed)
 {
        theLink.href += '&js_confirmed=1';
    }

    return is_confirmed;

} 

function fav()
{
if(navigator.appName == "Microsoft Internet Explorer" && parseFloat(navigator.appVersion) >= 4.0)
window.external.AddFavorite(location.href, document.title);
else alert("Не получается добавить в избранное. Попробуйте сделать это вручную из меню");
}


function confirmSubmit(theSqlQuery)
{
    var is_confirmed2 = confirm('Вы действительно хотите:\n' + theSqlQuery);
    if (is_confirmed2) {
    return true;
    }

    return false;
} 



 function tog(item) {


    e=  eval("document.getElementById('m"+item+"').style.display");
	if(e=='')
	 { 
	 eval("document.getElementById('m"+item+"').style.display = 'none'");
	 }
    else 
	 {
       eval("document.getElementById('m"+item+"').style.display = ''");
	 }

}

