//get window size
if (!is.ie) {
  winH = window.innerHeight;
}
function getMsWindowSize() {    //for IE only, call it after <body> tag
  if (is.ie) {
    winH = document.body.offsetHeight-13;
  }
}


//Inits
function StartInit() {
  if (is.ie) getMsWindowSize();
  cdivH = winH-cdivOffset;
}

