
function preview_video(link, title, x, y, width1, height1) {
    //width0 = 50;
    //height0 = 50;

    str='width='+width1+',height='+height1+',screenX='+x+',screenY='+y+',dependent=1,resizable=0,menubar=0,toolbar=0,location=0,scrollbars=0,status=0';

    win = window.open('', '', str);
    f = win.document;
    f.open();
    f.write("<html><head><title>"+title+"</title></head>");
    f.write("<body marginwidth='0' marginheight='0' topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0'>");
    f.write("<object width='425' height='350'><param name='movie' value='"+link+"'></param><param name='wmode' value='transparent'></param><embed src='"+link+"' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></body></html>");

}

function preview_video_local(link, title, x, y, width1, height1) {
    //width0 = 50;
    //height0 = 50;

    str='width='+width1+',height='+height1+',screenX='+x+',screenY='+y+',dependent=1,resizable=0,menubar=0,toolbar=0,location=0,scrollbars=0,status=0';

    win = window.open('', '', str);
    f = win.document;
    f.open();
    f.write("<html><head><title>"+title+"</title></head>");
    f.write("<body marginwidth='0' marginheight='0' topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0'>");
    f.write("<embed src='"+link+"' wmode='transparent' width='425' height='350'></embed></body></html>");

}