$ = function(id) {
	return document.getElementById(id);
}


function fixCSS() {
   col1 = $("boxTopLeft");
   col2 = $("boxTopRight");
   if (col1.offsetHeight >= col2.offsetHeight)
      col2.style.height = col1.offsetHeight;
   else
      col1.style.height = col2.offsetHeight-((getIEVersion() != -1) ? 0 : 20);
     if (!$("destaqueCFoto"))
        $("ultNotBarra").style.marginTop = "10px";
   if (getIEVersion() == 6) {
      $("boxTopLeft").style.margin = "10px 0px 10px 5px";
      $("boxAmarelo").style.margin = "0px 0px 0px 5px";
      $("fotoChamada").style.marginLeft = "5px";
      if ($("destaqueCFoto"))
         $("destaqueCFoto").style.margin = "10px 10px 10px 5px";
      if ($("dFoto"))
         $("dFoto").style.margin = "8px 5px 0px 5px";
      if ($("dTexto2"))
         $("dTexto2").style.margin = "10px 0px 0px 5px";
      $("ultNotBarra").style.marginLeft = "5px";
      $("ultNotHeader").style.marginLeft = "5px";
   }
}

function getIEVersion() {
   // Returns the version of Internet Explorer or a -1
   // (indicating the use of another browser).
   var rv = -1; // Return value assumes failure
   if (navigator.appName == 'Microsoft Internet Explorer') {
      var ua = navigator.userAgent;
      var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
      if (re.exec(ua) != null)
         rv = parseFloat( RegExp.$1 );
   }
   return rv;
}

// Coloque aqui o ID da enquete a ser exibida
idEnquete=900;
