if(window.attachEvent) 
document.getElementById('loginregister').attachEvent('onclick', function(){window.location='register.asp';}); 
else if(window.addEventListener) 
document.getElementById('loginregister').addEventListener("click",function(){window.location='register.asp';},false); 
else 
document.getElementById('loginregister').onclick=function(){window.location='register.asp';};