If you have one, and only one, button named "SubmitPOLexmarkSelect" then to access it you need:
Code:
var oButton = document.getElementsByName("SubmitPOLexmarkSelect");
I believe getElementsByName returns a collection if there are more than one elements with that name or just an object if not but it's a long time since I used it. If it fails try:
Code:
var oButton = document.getElementsByName("SubmitPOLexmarkSelect")[0];
--
Joe (
Microsoft MVP - XML)