This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
You need to check the http headers to determine the browser type. Here is a little script that works for me <% //determine browser type if (request.getHeader("USER-AGENT").indexOf("MSIE") >= 0) { //Your code here }else{ //Your code here } %>