/*****************************************************\
 * This should make Quiz run on MSIE, NN and Mozilla *
\*****************************************************/

// Stole this from Ender's Chat :)
var msie = (navigator.appName.indexOf("Internet Explorer") != -1 ? true : false);
function GetElement(n) {
    if(msie)
        return document.all[n];
    if((t = document.getElementById(n)) != null) return t;
    return document.getElementsByName(n)[0];
}

