
function getCss(height){

  var mypagesize = getPageSize();
  var top = Math.ceil((mypagesize[1]-height)/2);
  var menu_languages = top-20;

  var sty = 'DIV#container{height: '+mypagesize[1]+'px;} DIV#content_top{height: '+top+'px;} DIV#top{height: '+top+'px;} DIV#content_bottom{height: '+top+'px;}  DIV#bottom{height: '+top+'px;} DIV#menu_languages{padding-top: '+menu_languages+'px;}';

  var objBody 		= document.getElementsByTagName("body").item(0);
  var objHead 		= document.getElementsByTagName("head").item(0);
  
  if (objBody != "null" && objHead != "null") {
    var cssNode 	= document.createElement('style');
    cssNode.id    = 'css_myoverlayer';
    cssNode.type 	= 'text/css';
    cssNode.rel 	= 'stylesheet';
    cssNode.media = 'screen';
    
    if(cssNode.styleSheet){// IE
      cssNode.styleSheet.cssText = sty;
    } 
    else {// w3c
      var cssText = document.createTextNode(sty);
      cssNode.appendChild(cssText);
    }
  
    objHead.appendChild(cssNode);
  
  }

}



function preload(l){

  if (l == "IT")
    MM_preloadImages('modules/Intro/images/studio-bonon_H.jpg', 'modules/Intro/images/foto-bruno_H.jpg', 'template/images/bottom/azienda_IT_H.jpg', 'template/images/bottom/contatti_IT_H.jpg', 'template/images/bottom/digital-photo-point_IT_H.jpg', 'template/images/bottom/eventi_IT_H.jpg', 'template/images/IT_H.jpg', 'template/images/EN_H.jpg');
  else if (l == "EN")  
    MM_preloadImages('modules/Intro/images/studio-bonon_H.jpg', 'modules/Intro/images/foto-bruno_H.jpg', 'template/images/bottom/azienda_EN_H.jpg', 'template/images/bottom/contatti_EN_H.jpg', 'template/images/bottom/digital-photo-point_EN_H.jpg', 'template/images/bottom/eventi_EN_H.jpg', 'template/images/IT_H.jpg', 'template/images/EN_H.jpg');
    
}

