<!--
function GetWidth(obj){
  var width = obj.offsetWidth;
  if (width > 0){
  	return width;
  }
  if (!obj.firstChild){
  	return 0;
  }
  return 0;
}

function GetHeight(obj){
  var height = obj.offsetHeight;
  if (height > 0){
  	return height;
  }
  if (!obj.firstChild){
  	return 0;
  }
  return obj.firstChild.offsetHeight;
}
function GetY(obj){
  var y = 0;
  do{
    y += obj.offsetTop;
    obj = obj.offsetParent;
  }
  while (obj);
  return y;
}
function GetX(obj){
  var x = 0;
  do{
    x += obj.offsetLeft;
    obj = obj.offsetParent;
  }
  while (obj);
  return x;
}
function GetObject(id){
  if (document.all){
  	return document.all[id];
  }
  return document.getElementById(id);
}

//-->