// Copyright (c) 2006-2007, Powermand Inc. All Rights Reserved.

function populateAccount(){
        $('accountInfo.acctName').value='John Doe';
        $('accountInfo.acctPassword').value='demo';
        $('accountInfo.acctPasswordConfirmation').value='demo';
        $('accountInfo.acctEmail').value='dreamwatts@powermand.com';
        $('accountInfo.acctEmailConfirmation').value='dreamwatts@powermand.com';
        $('accountInfo.acctAddress').value='1934 SW 69th';
        $('accountInfo.acctUnit').value='#3';
        $('accountInfo.acctCity').value='Portland';
        $('accountInfo.acctState').value='OR';
        $('accountInfo.acctPostalCode').value='97223';
        $('resSameAs').checked=true;
        disableResidential();
}

function populateGatewayMac(){
    $('gatewayMac').value="AA:BB:CC:DD:EE:FF:00:11";
}
function populateGatewayMacRandom(){
    var chars = ["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];
    var mac = "";
    var delim = "";
    for (var i=0; i< 8; i++){
        var a= Math.round(16*Math.random());
        var b= Math.round(16*Math.random());
        mac = mac & delim & chars[a] & chars[b];
        delim = ":";
    }
     $('gatewayMac').value=mac;
}
