//** G B CARLSON 2007 - Window height adjustment when using IFRAME with banners **
var adjustHt = 148; //banner adjustment (92+56)px
if (window.innerHeight){  //Firefox 2, Opera 9, Safari Win & Mac O/S, Netscape 8, SeaMonkey 1
windowHeightSOM = window.innerHeight-adjustHt;
frHt = windowHeightSOM;
   document.write('<style type="text/css">');
   document.write('#frame1 {height:' + (frHt-0) + 'px;}');
   document.write('</style>');
}
else if (document.documentElement && document.documentElement.clientHeight){//Internet Explorer 6/7 & clones
windowHeightSOM = document.documentElement.clientHeight-adjustHt;
frHt = windowHeightSOM;
   document.write('<style type="text/css">');
   document.write('#frame1 {height:' + (frHt-0) + 'px;}');
   document.write('</style>');
}
