var ua = navigator.userAgent.toLowerCase();
var isOpera = (ua.indexOf('opera') > -1);
var isIE = (!isOpera && ua.indexOf('msie') > -1);
	function getViewportHeight() {
	return ((document.compatMode || isIE) && !isOpera) ? (document.compatMode == 'CSS1Compat') ? document.documentElement.clientHeight : document.body.clientHeight : (document.parentWindow || document.defaultView).innerHeight;
}

function SetDivText (myText, DivId) {
$(DivId).html(myText);
}

function kltogle (ID) {
$('#' + ID).toggle();
}


function maptogle (ID) {
	var winHeight = getViewportHeight();
	if (winHeight < 1) winHeight=580;
	$('#' + ID).css("height",(winHeight-20) + 'px');
	$('#' + ID).html('<iframe src="http://www.svadba-net.ru/map.php" width="959" height="' + (winHeight-20) + '" frameborder="0"> </iframe>');
var txt1 = $('#' + ID + 'btn').html();	
var pos = txt1.indexOf('swmapbtn2');
$('#' + ID).toggle();
$('#' + ID + 'sht').toggle();
if (pos != -1) $('#' + ID + 'btn').html('<img src="/images/swmapbtn.png" usemap="#swmaplnk" border="0" />'); else $('#' + ID + 'btn').html('<img src="/images/swmapbtn2.png" usemap="#swmaplnk" border="0" />');
}


// Добавить в Избранное 
function add_favorite(a) { 
  title=document.title; 
  url=document.location; 
  try { 
    // Internet Explorer 
    window.external.AddFavorite(url, title); 
  } 
  catch (e) { 
    try { 
      // Mozilla 
      window.sidebar.addPanel(title, url, ""); 
    } 
    catch (e) { 
      // Opera 
      if (typeof(opera)=="object") { 
        a.rel="sidebar"; 
        a.title=title; 
        a.url=url; 
        return true; 
      } 
      else { 
        // Unknown 
        alert('Нажмите Ctrl-D чтобы добавить страницу в закладки'); 
      } 
    } 
  } 
  return false; 
}
