function framescheck(parentframe){
  if(parent.location.href == self.location.href){
    var current = window.self.location.pathname;
    window.location.replace (parentframe + '?' + current);
  }
}

function cssBrowser(cssfile){
  var iversion = 1;
  if (navigator.userAgent.indexOf("Mozilla/4.") != -1){
    iversion = 4;
  }
  if (iversion >= 4){
    var str = '<link rel=\"stylesheet\" href=\"' + cssfile + '\">';
    document.write(str);
  }
}

function printFooter(imagesfldr,back){
  var str1 = '';
  if (back === true){
      str1 = '<p align="right"><a href="javascript:history.back(1)"><img src="' + imagesfldr + 'back_b.gif" border="1"></a></p>\r\n';
  }
  var str2 = '<address>\r\n';
  var str3 = '<img src="' + imagesfldr + '150x100/sar_bar2.jpg" height=2 width=685><br><br>\r\n';
  var str4 = 'Website design by Cloudia &copy; 2004<br>\r\n';
  var str5 = 'This page was last updated on 17 December 2004\r\n';
  var str6 = '</address>\r\n';
  document.write(str1);
  document.write(str2);
  document.write(str3);
  document.write(str4);
  document.write(str5);
  document.write(str6);
}