//Copyright 2007, Howling Dynamo, Inc. or its suppliers. All Rights Reserved. http://www.hdyn.com/wr/common/contact.php?addr=pr
function newAccount(){
try{
var _1=document.getElementById("aauser").value;
var _2=document.getElementById("aaemail").value;
if(_1==""||_2==""){
throw "you need a username and email address to create a new account.";
}
var _3="ssb/testNewAccount.php?a="+_1;
sendXML("<div></div>",_3,newAccountDone,"GET");
}
catch(e){
alert(typeof e.message=="undefined"?e:e.message);
}
}
function newAccountDone(_4){
try{
testError(_4);
var _5="OKUID:";
if(_4.responseText.indexOf(_5)!=0){
throw _4.responseText;
}
var _6=_4.responseText.substr(_5.length);
var _7="https://www.paypal.com/cgi-bin/webscr";
var _8=document.getElementById("aaemail").value;
if(_6==""||_8==""){
throw "you need a username and email address to create a new account.";
}
if(_6.length>18){
throw "maximum username length is 18 characters.";
}
var f=document.getElementById("f2");
f.item_name.value="flat grey wall artist account ("+_6+")";
f.custom.value=_6+":"+_8;
f.business.value="hdpaypal@hdyn.com";
f.action=_7;
f.submit();
}
catch(e){
alert(typeof e.message=="undefined"?e:e.message);
}
}
function okUserName(s){
var _b=new RegExp("^[a-zA-Z0-9]*$");
return _b.test(s);
}

