﻿// JScript File
var ie4 = false;
if (document.all){ 
        ie4= true;
}
function getObject(id){
    if (ie4){
        return document.all[id];
    }    
    else{
        return document.getElementById(id);
    }
}

