<!--
function setCookie3(name, value,expires,path) //, expires, path, domain, secure)
{
	var pt='/';
      document.cookie = name + "=" + escape(value)+  // ";";   +
        ((expires) ? "; expires=" + expires : "")+
		((path) ? "; path=" + pt : "");
      //  ((domain) ? "; domain=" + domain : "") +
       // ((secure) ? "; secure" : "");
}

function openWin2() {
  // only show survey if cookie is not present

 // alert("in open win");
  if (getCookie3("foo2") != null) {
    return true;
 }
 //setCookie3("foo1", "bar","Mon, 01-Jun-2001 00:00:00 GMT");
//  n = //open('../aboutdrf/legal_pop.htm','_blank','toolbar=0,directories=0,status=yes,width=660,height=560,menubar=no,scrollbars=yes,resizable=no');
//window.location.href="http://www.webillustrated.com/site_pre_endnote/aboutdrf/legal_pop.htm";
//window.location.href="http://63.238.13.146/aboutdrf/legal_pop.htm";
var ref;
//ref=document.referrer;
ref=self.location.toString();
ref=ref.substring(0,18);
if(ref=='http://www.doctorf')
{
	window.location.href="http://www.doctorfungus.org/aboutdrf/legal_pop.htm";
}
else if(ref=='http://www.webillu')
{
	window.location.href="http://www.webillustrated.com/site_pre_endnote/aboutdrf/legal_pop.htm";
}
else if(ref=='http://66.7.73.231')
{
	window.location.href="http://66.7.73.231/aboutdrf/legal_pop.htm";
}
else
{
	//window.location.href="http://localhost/aboutdrf/legal_pop.htm";
}

}
function getCookie3(name) {
	var cookie = " " + document.cookie;
	var search = " " + name + "=";
	var setStr = null;
	var offset = 0;
	var end = 0;
	if (cookie.length > 0) {
		offset = cookie.indexOf(search);
		if (offset != -1) {
			offset += search.length;
			end = cookie.indexOf(";", offset)
			if (end == -1) {
				end = cookie.length;
			}
			setStr = unescape(cookie.substring(offset, end));
		}
	}
	return(setStr);
}

// -->