 function NewWindows(url)
{
    var jumpToHere;
    var winOptions;
    var popUpWindow;
    var swidth;
    var sheight

    swidth = screen.availWidth;
    sheight = screen.availHeight;
    jumpToHere = url ;
    winOptions = 'outerHeight=' + sheight + ', outerWidth=' + swidth +',scrollbars=yes,resizable=yes';
    popUpWindow = open(jumpToHere, "NewWindow", winOptions);
 }


function setinnerHeight()
{
if (window.innerHeight) 
    {
    theHeight=window.innerHeight;
    }
else if (document.documentElement && document.documentElement.clientHeight) 
    {
    theHeight=document.documentElement.clientHeight;
    }
else if (document.body) 
    {
    theHeight=document.body.clientHeight;
    }
    
if(parseInt(theHeight) < parseInt(document.body.scrollHeight))
    {
    theHeight=document.body.scrollHeight + 5;
    }    

document.getElementById("LeftBar").style.height=(theHeight-200) +'px';
}


  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19084735-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();



