 <!--
var node = document.getElementById('submit_btn');
node.removeChild(node.childNodes[1]);  //node 1 because of javascript
if (navigator.userAgent.indexOf('MSIE') > -1 && navigator.userAgent.indexOf('Opera') == -1) {//IE stuff here
var new_img=document.createElement('<img src="img/signin_btn.gif" id="btn_img" style="cursor:pointer" />');
new_img.setAttribute('onmousedown',function a(){submitForm();});
new_img.setAttribute('onmouseover',function s() {this.src='img/signin_btn_hover.gif';});
new_img.setAttribute('onmouseout',function c(){this.src='img/signin_btn.gif';});
} else {
new_img = document.createElement("img"); 
new_img.src ="img/signin_btn.gif" ; 
new_img.id ="btn_img" ; 
new_img.setAttribute('onmouseover',"this.src='img/signin_btn_hover.gif'");
new_img.setAttribute('onmouseout',"this.src='img/signin_btn.gif'");
new_img.setAttribute('onmousedown',"javascript: submitForm();");
new_img.setAttribute('style',"cursor:pointer");
//new_img.onmouseover = 
new_img.border = "0";
	 }
node.appendChild(new_img);
document.write('<input type="hidden" name="javascript" value="1">');//var if javascript is enabled
-->