mouse_at_x = 0;
mouse_at_y = 0;
my_browser =''
is_w3c = (document.getElementById)  ? true : false;
is_ie4 = (document.all && !is_w3c) ? true : false;
is_ie5 = (document.all &&  is_w3c) ? true : false;
is_ns4 = (document.layers) ? true : false;

item_ids='subcv,subcvbar,subprofil,subprofilbar,subpublika,subpublikabar';
function fetch_Element(id) {
  winstat=window.status

    if (typeof id == 'object' || typeof id=='[object]') {
//      window.status='You passed the data-type  ' + id + '    .';
      return id;
      }
    else {
//      window.status='You passed the id-label  ' + id + '    .';
      }

  if( is_ns4 ) return findlayer( id, document );
    else if( is_ie4 ) return document.all[id];
  else return window.document.getElementById(id);

}