﻿function openwindow(passformname)
{
    win = window.open("", "", "toolbar=no,width=450,height=215");
    win.document.write("<HTML>\n<HEAD>\n<TITLE>Виртуална Клавиатура</TITLE>\n</H" +
    "EAD>\n<BODY>\n<SPAN id='msg'><B>Напишете вашата парола:</B></SPAN>\n<FORM " +
    "name='keyboard'>\n");
    n = Math.floor((126 - 33 + 1) * Math.random() + 33);
    for(i = 0; i <= 93; i++) {
        str = String.fromCharCode(n);
        if(n == 126) n = 32;
        if(n == 39) {
           win.document.write("<INPUT type='button' name='button" + i + "' v" +
           "alue=\"" + str + "\" style='width: 1.5em; border-style: none' on" +
           "click='window.opener.document.forms[1]." + passformname + ".valu" +
           "e += document.keyboard.button" + i + ".value'>");
           n++;
           continue;
        }
        n++;
        win.document.write("<INPUT type='button' name='button" + i + "' valu" +
        "e='" + str + "' style='width: 1.5em; border-style: none' onclick='w" +
        "indow.opener.document.forms[1]." + passformname + ".value += docume" +
        "nt.keyboard.button" + i + ".value'>");
    }
    win.document.write("<P><INPUT type='button' value='Изчисти' onclick='windo" +
    "w.opener.document.forms[1]." + passformname + ".value = \"\"'>&nbsp;<IN" +
    "PUT type='button' value='Затвори' onclick='self.close()'>\n</FORM>\n</BOD" +
    "Y>\n</HTML>");
}
