/* ===========================================================================   update.js	Link to Updated Content     jB   Sat 121005       Implements Decision 121005-A, Decision 111606-A.    =========================================================================== */function UpdatedRelationshopContent() {	if (false) // Deactivated 100608: 		// Decision 121005-A: Go to updated content: 		if (window.location.protocol.substr(0,5) != "file:") 			if (document.URL.toLowerCase().indexOf("/relationshop/") == -1) 				location.replace("http://users.aol.com/Relationshop/"); 	}function updated_content() {var w = (window.location.protocol.substr(0,5) != "file:"); var a = (w && window.location.hostname.length != 13 && window.location.hostname.length != 15); var b = (window.location.pathname.indexOf("RelShop/") != -1); // document.writeln("a = " + a); // document.writeln("b = " + b); // document.writeln("w = " + w); // a = false; // 042707-D // Related to Decision 121005-A: Go to updated content: if (a || b) 	{	var path = window.location.pathname; 		// Newer content: 		if (b) 		{		re =  /RelShop/ ; 		path = path.replace( re , "Relationshop"); 	//	document.writeln("new path = " + path); 		}		// Specific page updates: 		if (path == "Relationshop/Proofreading/index3.html") 		path =  "Relationshop/Proofreading/index.html"; 	else if (path == "JEBrown800/software/Store/CardReaderService.html") 		     path =  "JEBrown800/software/Store/CardReaderService/index.html"; //	This change-of-address is on hold until Plan 111506-T is enacted.//	else if (path == "JEBrown800/index.html") //		     path =  "JEBrown800/index2a.html"; //	else if (path == "HowToTakeNotes.html") //		     path =  "Articles/HowToTakeNotes.html"; 		if (false) // Deactivated 100608: 		{		// Put name of fastest server here: 		var  s = ( w ? "http://users.aol.com" + path : "file://" + window.location.hostname + path ) ; 		if (window.location.hash.length) 			s += window.location.hash; 		s += "?ref=" + escape(top.document.referrer); 		// ~ window.location.search is lost 	//	document.writeln("<P>Location is: " + s); 		location.replace(s); 		}	}}/* ======================================================================== */