/* Get Page dimensions */function findLivePageWidth() {	if (window.innerWidth)		return window.innerWidth;	if (document.body.clientWidth)		return document.body.clientWidth;	return (null);}/* initialize */function initPopOvers() {	objectSlide=document.getElementById('slide');	objectCover=document.getElementById('cover');	objectHTMLBox=document.getElementById('popbox');}/* Hides expanded window */function hideBanner() {	objectSlide.style.display = 'none';		objectCover.style.display = 'none';}/* Pop a new window for copyright */function copyrightBanner(evt) {	objectSlide.style.display = 'block';	objectCover.style.display = 'block';	objectHTMLBox.innerHTML='<iframe src ="include/copyright.html" width="600px" height="450px" frameborder="0" scrolling="no"><p>Your browser does not support iframes.</p></iframe>';// controls the left edge of the slide window	livePageWidth = findLivePageWidth();	newLeft = ((livePageWidth-850)/2) + (115);	objectSlide.style.left = newLeft + 'px';}/* Pop a new window for privacy banner */function privacyBanner(evt) {	objectSlide.style.display = 'block';	objectCover.style.display = 'block';	objectHTMLBox.innerHTML='<iframe src ="include/privacy.html" width="600px" height="450px" frameborder="0" scrolling="no"><p>Your browser does not support iframes.</p></iframe>';// controls the left edge of the slide window	livePageWidth = findLivePageWidth();	newLeft = ((livePageWidth-850)/2) + (115);	objectSlide.style.left = newLeft + 'px';}