window.onresize = adjustLayout;//adjusts layout width windowfunction adjustLayout() {document.getElementById('footer').style.position = "absolute";    document.getElementById('footer').style.bottom = "0px";        /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ADJUST FOOTER POSITION FOR LARGE SCREENS FOR INTERIOR PAGES ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*///get height and width values for window    browserHeight = getBrowserHeight();    browserWidth = getBrowserWidth();	//get height and width values for interior page body area    bodyHeight=document.getElementById('pageContainer').offsetHeight;	footerHeight=document.getElementById('footer').offsetHeight;                     //set page height    pageHeight = bodyHeight + footerHeight;    pageWidth = 800;		        //for interior pages -- if page height is less than browser window height, set footer to bottom of browswer window    if (pageHeight < browserHeight) {    document.getElementById('footer').style.position = "absolute";    document.getElementById('footer').style.bottom =  "0px";    document.getElementById('footer').style.width = (browserWidth - 20) + "px";	    }        if (pageHeight > browserHeight) {    document.getElementById('footer').style.position = "static";	    }    }//retrieves height of browser windowfunction getBrowserHeight() {    if (window.innerHeight) {    return window.innerHeight;        }    if (document.documentElement.clientHeight) {    return document.documentElement.clientHeight;        } return (null);}//retrieves width of browser windowfunction getBrowserWidth() {    if (window.innerWidth) {    return window.innerWidth;        }    if (document.documentElement.clientWidth) {    return document.documentElement.clientWidth;        } return (null);}//opens new windowfunction new_window(url) { 
	link = window.open(url,"lnkW9Document","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600,left=40,top=50"); 
}

