if (document.getElementById) {
	isIE = document.all?true:false;
  isHome = (window.location.href.indexOf('index.htm')>-1)?true:(window.location.href=="http://wedding.rasnake.info/")?true:false;
  isAtt = (window.location.href.indexOf('attendants.htm')>-1)?true:false;
  window.onload = window.onresize = init;
}
function init() {
  h = document.documentElement.clientHeight;
  mainD = document.getElementById('main');
  contD = document.getElementById('content');
  newH = (h - 100) + "px";
  mainD.style.height = newH;
  if (!isHome&&!isAtt) contD.style.height = newH;
}
function newWindow(file,name,width,height,center,otherSet) {
  position = "";
  if (center == "yes") {
    LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
    position = ',top='+TopPosition+',left='+LeftPosition ;
  }
  settings = 'width='+width+',height='+height + position + otherSet;
  if (name == "") name = "unnamed"; 
  window.open(file,name,settings);
}
function openAdd() {
  newWindow('add.php','add',450,540,'',',scrollbars');
}


