function getObjectRef(name) {

if(document.getElementById) return document.getElementById(name);

else if(document.all) return document.all[name];

else return null;

}

function allSupport() {

if(document.all) return "True";


else return "False";

}

function frameElementSupport() {

if(window.frameElement) return true;


else return false;

}