 

  
  myname = "rick";
  ppname = "rick";
  info   = "info";
  rksite = "kerbel";
  mnsite = "usaMobileNotary";
  bdsite = "bigDealHomes";
  ccsite = "China-Closet";
  tcsite = "TreasureCloset";
  ppsite = "kerbel";
  
  function goHist(a){
    history.go(a);      // Go back one.
  }
  
  function goLink(a){
    window.location=a;
  }

  function popup(url) {
    winpops = window.open(url, "", "width=400,height=340,scrollbars,resizable");
  }

  function popupWH(url,w,h) {
    winpops = window.open(url, "", "width=" + w + ",height= " + h + ",scrollbars,resizable");
  }
  
  function popupWHfixed(url,w,h) {
    winpops = window.open(url, "", "width=" + w + ",height= " + h + ",scrollbars");
  }
  
  function closePopup() {
    window.close();
  }
  
  function show(id) {
    id.style.visibility='visible';
  }
          
  function hide(id) {
    id.style.visibility='hidden';
  }
  
   
  clr=new Array('yellow','white','silver');
  
  function highlightInput(state) {
    element = event.srcElement;
    etag = element.tagName;
    etype = element.type;   
    
    if ((etag=='INPUT'||etag=='TEXTAREA') && etype!='checkbox' && etype!='radio' && etype!='submit' && etype!='image') {
//      element.style.backgroundColor = clr[state];
//      element.focus();
    }
  }


 
  function getBrowser() {
    if(document.images){
      if(navigator.userAgent.indexOf("Opera") != -1)
        return "opera";
	  if(navigator.userAgent.indexOf("AOL") != -1)
        return "aol";
      if (document.all && !document.getElementById)
		return "ie";
	  if (document.all && document.getElementById)
	    return "ie";
	  if (document.layers)
	    return "ns";
	  if (document.addEventListener)
	    return "ns"; 
	  if(navigator.userAgent.indexOf("Mac") != -1) 
        return "mac";
	  return "v3";
    }
  }

   

  function updContent(newText) {
    document.getElementById("tnbody").innerHTML = newText;
  }
  
 