/* 
  ================================================================================
   Script file: yccess.js
  
   Created:     6 July 2011, 08:13
   Author:      Parasona AB, http://www.parasona.com
   Copyright:   2011 © Yccess AB
    
   Description: Javascript for the Yccess Web Site
  ================================================================================
*/

// For IE4+
ie=(document.all)?true:false;

// For Mozilla
dom=((document.getElementById) && (!ie))?true:false;

function setEventByObject(ob, ev, fu) {
   if (dom) {
      ob.addEventListener(ev, fu, false);
   }
   if (ie) {
      ob.attachEvent('on' + ev, fu);
   }
}

function setLayout() {
   if (ie) {
      var heightValue=document.getElementById('topTable');
      heightValue.style.height=75 +"px";
      heightValue=document.getElementById('menuTable');
      heightValue.style.height=25 +"px";
   }
   if (dom) {
   }
}


function loading() {
   setLayout();
}
setEventByObject(window, 'load', loading);

