﻿function LoadVideo(num) {
    LeftPosition = (window.screen.width) ? (window.screen.width - 320) / 2 : 0;
    TopPosition = (window.screen.height) ? (window.screen.height - 240) / 2 : 0;

    window.open("videos/video" + num + ".html", "floorplans", "width=320,height=240,top=" + TopPosition + ",left=" + LeftPosition + ",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,menubar=no");
}

function LoadNewsVideo(name, width, height) {
    LeftPosition = (window.screen.width) ? (window.screen.width - width) / 2 : 0;
    TopPosition = (window.screen.height) ? (window.screen.height - height) / 2 : 0;

    window.open("videos/" + name + ".html", "floorplans", "width="+width+",height="+height+",top=" + TopPosition + ",left=" + LeftPosition + ",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,menubar=no");
}