Ok I'm looking at the JavaScript from the page and I see several of what look like submit code blocks. But I'm not sure which is which.
I found what looks like the submit buttons html code:
Code:
</div>
<div style="position: absolute; top: 85px; left: 68px; width: 70px; height: 32px; z-index: 0;" class="outter" align="left">
<button type="button" id="_post" onclick="PostPriority()" style="background-color: navy; font-size: 9px; cursor: pointer; width: 70px; font-weight: bolder; color: white;">Record<br>your Bids</button>
</div>
And the JS function that it refers to:
Code:
function PostPriority() 
{
 if (document.all.awarded_line.innerHTML == "") top.main_mainFrame.leftFrame.PostPriority();
}
But I'm still confused. I'm currently learning a little JS so I can hope fully figure out how this thing works.