<!--
// ** Utility for automatically placing the Rootsweb Freepages/Homepages bottom
//    Banner at the foot of the open window when rendering short pages.
//    Cross-Browser compatible.
//    Place <script type="text/javascript" src="fpheight.js"></script> immediately
//    following <body> tag, and ensure the fpheight.js file is in the same directory
//    as your html page.
// -------------------------------------------------------------------
//    G B Carlson.. 7 September 2007.
// -------------------------------------------------------------------
var fpHeight;
if (window.innerHeight) {
fpHeight=window.innerHeight;
h = fpHeight-94; //Firefox 2, Opera 9, Safari Win & Mac O/S, Netscape 8, SeaMonkey 1
document.write('<style type="text/css">');
document.write('#userContentFP, #userContentHP {height:'+h+'px}');
document.write('</style>');
}
else if (document.documentElement && document.documentElement.clientHeight) {
fpHeight=document.documentElement.clientHeight;
h = fpHeight-77;
document.write('<style type="text/css">');
document.write('#userContentFP, #userContentHP {height:'+h+'px}');
document.write('</style>');
}
else if (document.body) {
fpHeight=document.body.clientHeight;
h = fpHeight-77;//Internet Explorer 6/7 & clones
document.write('<style type="text/css">');
document.write('#userContentFP, #userContentHP {height:'+h+'px;}');
document.write('body {overflow-y:hidden}');
document.write('</style>');
}
//-->