function IsDomBrowser()
{
  if(document.getElementById) 
  {
    return 1;
  } else {
    return 0;
  }
}

function pageinit() {}
