function vSetSuggestion(_1,_2){
document.getElementById(_1+"Disp").value=_2.innerHTML;
document.getElementById(_1).value=_2.title;
vDisplayArea(_1+"List","off");
return false;
};
function vProcessForm(_3){
var _4=document.getElementById(_3);
_4.submit();
};
function getAbsoluteLeft(_5){
o=document.getElementById(_5);
oLeft=o.offsetLeft;
while(o.offsetParent!=null){
oParent=o.offsetParent;
oLeft+=oParent.offsetLeft;
o=oParent;
}
return oLeft;
};
function getAbsoluteTop(_6){
o=document.getElementById(_6);
oTop=o.offsetTop;
while(o.offsetParent!=null){
oParent=o.offsetParent;
oTop+=oParent.offsetTop;
o=oParent;
}
return oTop;
};

