if (window.innerWidth > 0) var inwidth = window.innerWidth - 17;
else if (document.body.clientWidth > 0) var inwidth = document.body.clientWidth - 17;
else if (self.innerWidth) var inwidth = self.innerWidth - 17;
else if (document.documentElement.clientWidth) var inwidth = document.documentElement.clientWidth - 17;
if (inwidth > 800){
	inwidth = inwidth - 75;
}else{
	inwidth = 800;
}
   try{
      frame = document.getElementById(frameId);
      innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
      objToResize = (frame.style) ? frame.style : frame;
      objToResize.height = innerDoc.body.scrollHeight + 10;
   }
   catch(err){
      window.status = err.message;
   }

document.write('<!-- Blog derived from uwwaterskiandwakeboard.blogspot.com -->\
	<center>\
	<div>\
	<iframe id="childframe" name="childframe" src="http://uwwaterskiandwakeboard.blogspot.com/" frameborder="0" border="0" width="' + inwidth + '" height="3000px" scrolling="no">\
	</iframe>\
	</div>\
	</center>');
