<!-- HIDE
/* used now to display message on old server during big update - see old_good_force.title.js */

function changetitle(){
var domain = document.URL;
var newdomain = " ";
var delim = ".org";
var domainArray = " ";
/* if not running on local pc */
             if (document.URL.indexOf('http:',0) != -1) {

                 delim = ".org.uk";
                 
              }


domainArray = domain.split(delim)[1];
var a = "http://www.microscopy-uk.org.uk"+domainArray;
window.prompt('You may have just loaded a cached page. Try right-clicking and reloading this frame/page. If this box reappears please cut the line below and email it to us: artistmol@aol.com',a);
}

//location.reload()
//
//var_title=document.title;
//if (window.self.location != window.top.location)
//window.parent.document.title=var_title;

// STOP HIDING -->