// Magdalena Donea 4/2/2001
// set domain=lp.org if the URL includes http://www.lp.org
// 4/4/01: made this IE5 only - must revisit

var IE4 = (document.all && !document.getElementById) ? true : false;
var NS4 = (document.layers) ? true : false;
var IE5 = (document.all && document.getElementById) ? true : false;
var N6 = (document.getElementById && !document.all) ? true : false;

if (IE5)
   {
	if ((window.location.hostname == 'www.lp.org')||(window.location.hostname == 'www.lp.org:80'))
	   {
		document.domain = "lp.org";
	   }
   }

