﻿document.domain = "onlinedataservice.com";

function popupWindow(o, d, url) {
    document.domain = "onlinedataservice.com"
    var obj = document.getElementById(o);
    var flash = document.getElementById("AboutTheTurbine");
    var objpopup = document.getElementById("popup1");
    var objimage = document.getElementById("imgClose");
    objimage.style.left = screen.availWidth - 60;
    objpopup.width = screen.availWidth - 40;
    objpopup.width = screen.availHeight - 150;
    flash.width = screen.availWidth - 44;
    flash.height = screen.availHeight - 156;
    if (d) {
        flash.movie = url;
        obj.style.display = 'block';
    }
    else {
        flash.movie = 'nothing';
        obj.style.display = 'none';
    }


}