function loadvid(vidfile) {
    var screen = document.getElementById('screen');
    screen.innerHTML = embedvid(vidfile);
}

function popvid(vidfile) {
    var url = 'http://www.vandivergroup.com/script/video.php?vidfile='+vidfile;
    var left = screen.width - 380;
    window.open(url, 'popvid', 'height=290, width=370, top=0, left='+left+'');
}

function embedvid(vidfile) {
    var output = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="350" height="270" id="'+vidfile.slice(0,(vidfile.length - 4))+'" align="left"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="./video/'+vidfile+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="./video/'+vidfile+'" quality="high" bgcolor="#ffffff" width="350" height="270" name="'+vidfile.slice(0,(vidfile.length - 4))+'" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
    return output;
}