function
widget_embed_iframe (f)
{
// scales iframe to the size of its content
// RESTRICTIONS: iframe content must be from the *same* domain as this file
// tested with FF and IE8
//<iframe onload="javascript:autoscaleiframe(this);" src="test40_.html" frameborder="0" marginwidth="0" marginheight="0 scrolling="no"></iframe>

//Timestamp: 01/11/12 12:14:18
//Error: Permission denied to access property 'document'
//Source File: http://maps.a1.25u.com/misc/embed.js
//Line: 12

//  var d = f.contentDocument;
  var w = f.contentWindow;
  var width = 
    w.document.body.scrollLeft ||
    w.document.body.scrollWidth
//    d.body.scrollLeft ||
//    d.body.scrollWidth
;
  var height =
    w.document.body.scrollTop ||
    w.document.body.scrollHeight
//    d.body.scrollTop ||
//    d.body.scrollHeight
;
  f.style.width = parseInt (width) + 10 + 'px';
  f.style.height = parseInt (height) + 10 + 'px';
}  



