function ShowVideo(furl, fh, fw, fh1, fw1, fname)
{

    Showin = window.open(furl, "photo", "toolbar=no,menubar=no,scrollbars=yes,resizable=no,height=" + fh1 + ",width=" + fw1 + ",top=50,left=50");
    Showin.document.open();
    Showin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Солнечный круг</title>');
    Showin.document.writeln('</head><body style="text-align: center; padding: 15px; background-color: #ffffff; margin: auto;" ><embed AUTOSTART="1" src="' + furl + '" width="' + fh + '" height="' + fw + '"></embed></body></html>');
    Showin.document.close();
    Showin.focus();
    return false;
}
