// JavaScript Document




// Fixes margin on pListBox elements when there is no scrollbar
var vHeight = 0;
if (document.all) {
  if (document.documentElement) {
    vHeight = document.documentElement.clientHeight;
  } else {
    vHeight = document.body.clientHeight
  }
} else {
  vHeight = window.innerHeight;
}

if (document.body.offsetHeight < vHeight) {
 $(".pListBox").css("margin-left","2px");

 
}
