js: "_form.js", line 218: missing name after . operator
js: 		var reg = this.validationJson[form_id].regex.float;
js: ....................................................^
js: "_form.js", line 1: Compilation produced 1 syntax errors.
var util={has_class:function(_1,_2){
return _1.className.match(new RegExp("(\\s|^)"+_2+"(\\s|$)"));
},add_class:function(_3,_4){
if(!this.has_class(_3,_4)){
_3.className+=" "+_4;
}
},remove_class:function(_5,_6){
if(this.has_class(_5,_6)){
var _7=new RegExp("(\\s|^)"+_6+"(\\s|$)");
_5.className=_5.className.replace(_7," ");
}
},add_event:function(_8,_9,fn){
if(_8.attachEvent){
_8["e"+_9+fn]=fn;
_8[_9+fn]=function(){
_8["e"+_9+fn](window.event);
};
_8.attachEvent("on"+_9,_8[_9+fn]);
}else{
_8.addEventListener(_9,fn,false);
}
},remove_event:function(_b,_c,fn){
if(_b.detachEvent){
_b.detachEvent("on"+_c,_b[_c+fn]);
_b[_c+fn]=null;
}else{
_b.removeEventListener(_c,fn,false);
}
},ucwords:function(_e){
_e=_e.split(" ");
newVal="";
for(var i=0;i<_e.length;i++){
newVal+=_e[i].substring(0,1).toUpperCase()+_e[i].substring(1,_e[i].length)+" ";
}
return newVal;
}};

function init_tooltips(){
var _1=document.getElementsByTagName("body")[0];
var _2=document.createElement("div");
_2.setAttribute("id","tooltip");
_2.innerHTML="&nbsp;";
_1.appendChild(_2);
var _3=document.getElementsByTagName("a");
var _4=_3.length;
for(i=0;i<_4;i++){
if(_3[i].title){
_3[i].onmouseover=showNote;
_3[i].onmousemove=moveNote;
_3[i].onmouseout=hideNote;
}
}
}
function getScroll(){
if(document.body.scrollTop!=undefined){
var _5=document.compatMode!="CSS1Compat";
var _6=_5?document.body:document.documentElement;
return {x:_6.scrollLeft,y:_6.scrollTop};
}else{
return {x:window.pageXOffset,y:window.pageYOffset};
}
}
function showNote(e){
var _8=e?e:event;
var _9=document.getElementById("tooltip");
var _a=getScroll();
_9.innerHTML=this.title;
this.title="";
moveNote;
_9.style.visibility=(_9.innerHTML=="")?"hidden":"visible";
}
function hideNote(e){
this.title=document.getElementById("tooltip").innerHTML;
document.getElementById("tooltip").style.visibility="hidden";
}
function moveNote(e){
var _d=e?e:event;
var _e=document.getElementById("tooltip");
var _f=getScroll();
var dw=document.width?document.width:document.documentElement.offsetWidth-25;
if(_d.clientX>dw-_e.offsetWidth){
_e.style.left=dw-_e.offsetWidth+_f.x+"px";
}else{
_e.style.left=_d.clientX-2+_f.x+"px";
_e.style.top=_d.clientY+15+_f.y+"px";
}
}
function init(){
init_tooltips();
}

