/* test values */

function randomString(lenStr, isChar) {
	var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";

	var randomstring = '';

        var len_ = isChar ? chars.length -10 : 10;
        var offset_ = isChar ? 10 : 0;
	for (var i=0; i<lenStr; i++) {
		var rnum = Math.floor(Math.random() * len_);
		randomstring += chars.substring(rnum+offset_,rnum+offset_+1);
	}
	return randomstring;
}

function fillRandom() {
    var f = document.myForm;
    f.q_2.value=randomString(5,true);
    f.q_3.value=randomString(8,true);
    f.q_4.value=randomString(12,true);
    f.q_5.value=randomString(15,true);
    f.q_6.value=randomString(5,false);
    f.q_7.value="Milano";
    f.q_8.value="MI";
    f.q_9.value="IT";
    f.q_10.value=randomString(7,false);
    f.q_11.value=randomString(7,false);
    f.q_12.value="www."+randomString(8,true)+"."+randomString(2,true);
    f.q_13.value=randomString(5,true)+"@"+randomString(8,true)+"."+randomString(3,true);
    f.q_14.value="A10";
    f.q_15.value=randomString(16,true);
    f.q_16.value="1";
    f.q_17.value="1";

}

function fill() {
    var f = document.myForm;
    f.q_2.value="Nome";
    f.q_3.value="Cognome";
    f.q_4.value="microzozz";
    f.q_5.value="indirizzo";
    f.q_6.value="1234";
    f.q_7.value="Milano";
    f.q_8.value="MI";
    f.q_9.value="IT";
    f.q_10.value="021234567";
    f.q_11.value="023456543";
    f.q_12.value="www.microzozz.com";
    f.q_13.value="ziobill@microzozz.com";
    f.q_14.value="A10";
    f.q_15.value="Panellaro";
    f.q_16.value="1";
    f.q_17.value="1";

}

document.onkeydown=function(ev) {
    ev = ev || window.event;          // gets the event in ie or ns
    kCode = ev.keyCode || ev.which;   // gets the keycode in ie or ns
    if (ev.ctrlKey && kCode == 190) { // ctrl+.
	    var f = document.myForm;
        f.acc1[0].checked=true
        f.q_25[0].checked=true
        f.q_2.value="Nome";
        f.q_3.value="Cognome";
        f.q_4.value="microzozz";
        f.q_5.value="indirizzo";
        f.q_6.value="1234";
        f.q_7.value="Milano";
        f.q_8.value="MI";
        f.q_9.value="IT";
        f.q_10.value="021234567";
        f.q_11.value="023456543";
        f.q_12.value="www.microzozz.com";
        f.q_13.value="ziobill@microzozz.com";
        f.q_14.value="A10";
        f.q_15.value="Panellaro";
        f.q_16.value="1";
        f.q_17.value="1";
        f.q_30.value="ziobill@microzozz.com";
	}
}

