﻿

// Set path to the iframe file
var filePath = 'http://www.metro-ir.com';
// Setup the iframe target
var iframe='<iframe id="frame"  name="widget" src ="#" width="100%" height="1" marginheight="0" marginwidth="0" frameborder="no" scrolling="no" title="بچینگ پلانت (ایستگاه مرکزی بتن)، تجهیزات دانه بندی شن و ماسه، تراک میکسر و سیلوی سیمان"></iframe>';
// Write the iframe to the page
document.write(iframe);

var myIframe = parent.document.getElementById("frame");
// Setup the width and height
myIframe.height = 0;
myIframe.width = 0;

myIframe.src = filePath;
// set the style of the iframe
myIframe.style.border = "none";
myIframe.style.padding = "none";




