<script type="text/javascript">
window.addEvent('domready', function(){
function resizeIframe( iframe ){
var innerDoc = $( ( iframe.contentWindow ) ? iframe.contentWindow.document.body : iframe.contentDocument.body ) );
var objToResize = (iframe.style) ? iframe.style : iframe;
var sizes = innerDoc.getSize();
var offsetHeight = sizes.scrollSize.y + 50;
objToResize.height = offsetHeight + '2px';
}
if( $('iframe') != null ){
var iframe = $('iframe');
iframe.addEvent('load', function(){
resizeIframe( this );
});
if( window.webkit || window.opera ){
var source = iframe.src;
iframe.src = 'com/shop';
iframe.src = source;
}else{
resizeIframe( iframe );
}
}
});
</script>
<iframe id="iframe" name="iframe" src="com/shop" style="margin-left: 22px; margin-top: 20px" width="870" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%;"></iframe>
Time to create page: 0.064 seconds