var GO = {
basePath: "",
iconPath: "/icons",
removeElement: function(el)
{
if(typeof el == 'string')
el = document.getElementById(el);
el.parentNode.removeChild(el);
},
getElementsByClass: function(node,searchClass,tag) {
var classElements = [];
if(!tag)
tag = '*';
var els = node.getElementsByTagName(tag);
var c = els.length;
var rx = new RegExp("(^|\\s)" + searchClass + "(\\s|$)");
for(var i=0; i