var _st = 0;
function __submitThrottle()
{
    var result = true;
    if (_st++ > 0)
	  result = false;
    //  reset throttle after 3 sec.
    window.setTimeout("_st=0", 3000);
    return result;
}
