/* Framer.js to establish correct window size for browser */

//calc window available
		winWidth = (document.all)?document.body.clientWidth:window.innerWidth;
		winHeight = (document.all)?document.body.clientHeight:window.innerHeight;
	
		if (winWidth < pageWidth) winWidth = pageWidth-10; //width control
	//  alert(winWidth);
document.write('<table width="' + (winWidth - 40) + '" border="0" cellpadding="10" background="'+bGround+'" bgcolor="#FF33AA"><tr><td>');
//<!-- defining space table, needs a </TD></TR></TABLE> at end of page -->
