﻿function loadMovie() {    var loco = './Video.php';    var atts = new Array();    var attList = new String();    atts[0] = 'width=350';    atts[1] = 'height=375';    atts[2] = 'resizable=no';    atts[3] = 'scrollbars=no';    atts[4] = 'toolbar=no';    atts[5] = 'location=no';    atts[6] = 'directories=no';    atts[7] = 'status=no';    atts[8] = 'menubar=no';    atts[9] = 'copyhistory=no';    for (var i = 0; i < atts.length; i++) {        attList += atts[i];        if (i < atts.length) {            attList += ',';        }    }    if (window.open) {        window.open(loco, '_blank', attList);    } else {        alert('Your browser does not support the necessary features to view our movie.');    }}