HTTP/1.1 200 OK
Date: Sat, 11 Feb 2012 04:20:24 GMT
Server: Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/4.4.7
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: wowbb=%7C%7C%7C%7C%7C%7C3906-4f35d663-37d5-4f35ddda-36df-4f35d8d2-37a1-4f35da27-27bb-4f35da93-391f-4f35dbde-2149-4f35eaa4-35b7-4f35ead4-381c-4f35e78a-10e0-4f35e127-3921-4f35e146-38a7-4f35e14f-8fc-4f35e160-3704-4f35ea75-362f-4f35e193-343a-4f35e1c7-1d75-4f35ec88-344a-4f35e65c-358b-4f35e88c-38d9-4f35e937-38ee-4f35e7c6-3594-4f35e810-3595-4f35eb8a-3404-4f35e8f1-37fa-4f35e91c-386e-4f35e9f8-38ea-4f35ea8b-3916-4f35eaf2-38d8-4f35eb9f-38a9-4f35ebd4-36fe-4f35ec62%7C%7C%7C%7C2e-4f35dce7-30-4f35ddda-b-4f35ec88-27-4f35d8d2-12-4f35db75-1e-4f35da93%7C%7C; expires=Thu, 09 Feb 2017 04:20:24 GMT; path=/; domain=.marshallprotocol.com
Last-Modified: Sat, 11 Feb 2012 04:20:24 GMT
Connection: close
Content-Type: text/html


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8">

<TITLE DIR="ltr">AUSTRALIAN members - General Questions and Discussion - MEMBER DISCUSSION - The Marshall Protocol Study Site</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="/themes/default/style_sheet.css">

<SCRIPT TYPE="text/javascript">

function suppress_errors()
{
   return true;
}

window.onerror = suppress_errors;


var browser_type;
var browser_version;
var cookie_params = new Array();
var today         = new Date();

function get_cookie()
{
   var cookies     = document.cookie.split("; ");
   var num_cookies = cookies.length;
   var i;
   var parts;
   cookie_params[2] = "none";

   for (i = 0; i < num_cookies; i++)
      {
         parts = cookies[i].split("=");
         if (parts[0] == "wowbb")
            {
               cookie_values = unescape(parts[1]);
               cookie_params = cookie_values.split("||");
               return;
            }
      }
}


function set_cookie()
{
   var cookie_expires = today.toUTCString(today.setSeconds(157680000));
   var cookie_value   = escape(cookie_params.join("||"));

   document.cookie    = "wowbb=" + cookie_value + "; expires=" + cookie_expires +
                        "; domain=.marshallprotocol.com; path=/";
}

navigator.userAgent.indexOf("MSIE") != -1 ? browser_type = "MSIE" : browser_type = "Netscape";
if (browser_type == "MSIE")
   {
      browser_version = navigator.userAgent.substr(navigator.userAgent.indexOf("MSIE") + 5, 1);
      if (navigator.userAgent.indexOf("Mac_PowerPC") != -1)
         browser_version = "Mac";
      if (browser_version.substr(0, 1) == 4)
         browser_type = "MSIE4";
   }
if (navigator.userAgent.indexOf("Gecko") != -1 || navigator.userAgent.indexOf("Opera") != -1)
   browser_type = "Gecko";

get_cookie();
cookie_params[2] = -today.getTimezoneOffset();
set_cookie();

function more_init()
{

}

var active_menu;
var active_link;
var active_link_class;


function get_element(id)
{
   if (browser_type == "MSIE4")
      return document.all[id];
   else
      return document.getElementById(id);
}


function window_dims()
{
   var dims = new Array("window_width", "window_height", "scroll_top", "scroll_top2");
   if (browser_type == "MSIE")
      {
         dims["window_width"]  = document.body.clientWidth;
         dims["window_height"] = document.body.clientHeight;
         dims["scroll_top"]    = document.body.scrollTop;
         dims["scroll_top2"]   = dims["scroll_top"];
      }
   else
      {
         dims["window_width"]  = window.innerWidth;
         dims["window_height"] = window.innerHeight;
         dims["scroll_top"]    = window.scrollY;
         dims["scroll_top2"]   = 0;
      }

   return dims;
}


function get_obj_pos(obj, obj_pos_x, obj_pos_y, dims)
{
   x = obj_pos_x + obj.offsetLeft;
   y = obj_pos_y + obj.offsetTop;
   if (obj.offsetParent != null)
      {
         browser_type == "MSIE" ? dims["scroll_top"] = obj.offsetParent.scrollTop : dims["scroll_top"] = 0;
         get_obj_pos(obj.offsetParent, x, y - dims["scroll_top"], dims);
      }
   return new Array(x, y);
}


function show_menu(event, obj, menu_id)
{
   var horizontal_shift = 20;
   var vertical_shift   = 2;

   if (browser_type == "Netscape" || browser_version == "Mac" || browser_version == "4")
      return;

   var menu = get_element(menu_id);
   var pc;

   if (menu == null)
      {
         if (browser_type == "MSIE")
            menu = document.createElement('<DIV ID="' + menu_id + '" CLASS="popup" DIR="ltr">');
         else
            {
               menu = document.createElement("div");
               menu.setAttribute("id",    menu_id);
               menu.setAttribute("class", "popup");
               menu.setAttribute("dir",   "ltr");
            }
         document.body.appendChild(menu);

         u = user_menus[menu_id];

         pc = popup_code.replace('$_mi_view_profile', u[0] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_view_profile',      u[1]);
         pc = pc.replace('$_mi_send_pm',        u[2] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_send_pm',           u[3]);
         pc = pc.replace('$_mi_user_email',     u[4] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_email',        u[5]);
         pc = pc.replace('$_mi_user_homepage',  u[6] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_homepage',     u[7]);
         pc = pc.replace('$_mi_user_aim',       u[8] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_aim',          u[9]);
         pc = pc.replace('$_mi_user_icq',      u[10] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_icq',         u[11]);
         pc = pc.replace('$_mi_user_msnm',     u[12] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_msnm',        u[13]);
         pc = pc.replace('$_mi_user_ym',       u[14] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_user_ym',          u[15]);
         pc = pc.replace('$_mi_add_to_mana',   u[16] == "i" ? "menuitem" : "menuitemdisabled");
         pc = pc.replace('$_add_to_mana',      u[17]);

         menu.innerHTML = pc;
      }

   if (active_menu != null)
      active_menu.style.display = "none";

   if (browser_type == "MSIE" && browser_version >= "6")
      menu.filters[0].Apply();

   dims       = window_dims();
   menu_pos   = get_obj_pos(obj, 0, 0, dims);
   menu_pos_x = menu_pos[0];
   menu_pos_y = menu_pos[1] + dims["scroll_top2"];

   if (active_link != null)
      active_link.className = active_link_class;
   active_link        = obj;
   active_link_class  = active_link.className;
   obj.className      = "userselected";
   obj.blur();
   menu.style.display = "block";
   menu_left          = menu_pos_x;
   menu_top           = menu_pos_y + obj.offsetHeight;

   if (dims["window_width"] < (menu_left + menu.offsetWidth + horizontal_shift))
      menu_left = menu_pos_x - menu.offsetWidth;

   if (menu_top + menu.offsetHeight + vertical_shift - dims["window_height"] > dims["scroll_top"])
      menu_top = menu_pos_y - menu.offsetHeight;

   menu.style.left = (menu_left + horizontal_shift) + "px";
   menu.style.top  = (menu_top + vertical_shift) + "px";
   active_menu     = menu;

   if (browser_type == "MSIE")
      window.event.returnValue = false;
   else
      event.preventDefault();

   if (browser_type == "MSIE" && browser_version >= "6")
      menu.filters[0].Play();
}


function hide_menu(event)
{
   if (browser_type == "MSIE")
      var tag_name = window.event.srcElement.tagName;
   else
      {
         var tag_name = event.target.tagName;
         if (!tag_name)
            var tag_name = event.target.parentNode.tagName;
      }

   if (active_menu != null && tag_name.toLowerCase() != "a")
      {
         active_link.className     = active_link_class;
         active_menu.style.display = "none";
      }
}

</SCRIPT>

<SCRIPT TYPE="text/javascript">
var popup_code     = '<A  CLASS="$_mi_view_profile" HREF="$_view_profile"><IMG SRC="/images/icons/profile.gif" WIDTH="16" HEIGHT="12" ALT="" BORDER="0"> &nbsp; View Profile</A><A  CLASS="$_mi_send_pm" HREF="$_send_pm"><IMG SRC="/images/icons/pm_message.gif" WIDTH="16" HEIGHT="12" ALT="" BORDER="0"> &nbsp; Send a Private Message</A><A  CLASS="$_mi_user_email" HREF="$_user_email"><IMG SRC="/images/icons/pm_message_new.gif" WIDTH="16" HEIGHT="12" ALT="" BORDER="0"> &nbsp; Send E-mail</A><A  CLASS="$_mi_user_homepage" HREF="$_user_homepage" TARGET="_blank"><IMG SRC="/images/icons/link.gif" WIDTH="16" HEIGHT="12" ALT="" BORDER="0"> &nbsp; Visit Homepage</A><HR CLASS="menuseparator"><A  CLASS="$_mi_user_aim" HREF="$_user_aim"><IMG SRC="/images/icons/aim.gif" WIDTH="16" HEIGHT="14" ALT="" BORDER="0"> &nbsp; AIM</A><A  CLASS="$_mi_user_icq" HREF="$_user_icq"><IMG SRC="/images/icons/icq.gif" WIDTH="16" HEIGHT="14" ALT="" BORDER="0"> &nbsp; ICQ</A><A  CLASS="$_mi_user_msnm" HREF="$_user_msnm"><IMG SRC="/images/icons/msnm.gif" WIDTH="16" HEIGHT="14" ALT="" BORDER="0"> &nbsp; MSNM</A><A  CLASS="$_mi_user_ym" HREF="$_user_ym"><IMG SRC="/images/icons/ym.gif" WIDTH="16" HEIGHT="14" ALT="" BORDER="0"> &nbsp; YM</A>';
var user_menus     = new Array("menu4","menu2994","menu501","menu11","menu2743","menu171","menu1456","menu2086","menu2375","menu542","menu2768","menu4588","menu1534");
user_menus["menu4"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu2994"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu501"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu11"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu2743"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu171"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu1456"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu2086"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu2375"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu542"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu2768"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu4588"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
user_menus["menu1534"] = new Array("d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#","d","#");
</SCRIPT>

<SCRIPT TYPE="text/javascript" SRC="/themes/wgui.js"></SCRIPT>
</HEAD>
<BODY CLASS="body" onload="more_init()" onmousedown="hide_menu(event)">


<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr">
<TR>
   <TD CLASS="clean"><A HREF="http://MPKB.org"><IMG SRC="/MPsite.gif" BORDER="0" ALT="The Marshall Protocol Study Site Home"></A></TD>
   <TD CLASS="clean" ALIGN="right"><FORM NAME="search_form" METHOD="get" ACTION="/search.php">
<INPUT TYPE="hidden" NAME="s" VALUE="">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>
<TD CLASS="clean"><INPUT CLASS="textbox" TYPE="text" NAME="q" SIZE="12" VALUE=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button1_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button1_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="javascript: document.search_form.s.value='1'; document.search_form.submit();" onmouseover="window.status=''; return true;" onmouseout="window.status=''; return true;">Search</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button1_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean">&nbsp; &nbsp;</TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button1_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button1_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/view_user.php?list=1">Members</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button1_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button1_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button1_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/calendar.php">Calendar</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button1_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button1_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button1_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/help.php">Help</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button1_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button1_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button1_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="http://www.marshallprotocol.com/index.php">Home</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button1_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR>
<TR>
   <TD CLASS="clean" COLSPAN="17" DIR="ltr"><INPUT TYPE="checkbox" NAME="by_username" VALUE="1"> Search by username
<!--WowBB separator--></TD>
</TR></TABLE>
</FORM>
<SPAN DIR="ltr"><a
href="http://autoimmunityresearch.org/donate.html"><image
src="http://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif"
align=middle></a>&nbsp;&nbsp;&nbsp;Not logged in - <A CLASS="nummessages" HREF="/login.php">Login</A> | <A CLASS="nummessages" HREF="/login.php?register=1">Register</A>&nbsp;</SPAN></TD>
</TR>
<TR>
   <TD CLASS="clean" COLSPAN="2"><DIV CLASS="currentlocation" DIR="ltr"><A CLASS="currentlocation" HREF="/">The Marshall Protocol Study Site</A> &gt; <A CLASS="currentlocation" HREF="/category6/">MEMBER DISCUSSION</A> &gt; <A CLASS="currentlocation" HREF="/forum11/">General Questions and Discussion</A> &gt; AUSTRALIAN members</DIV></TD>
</TR>
</TABLE>
<BR>
<DIV CLASS="statusmessage" DIR="ltr"></DIV>
<CENTER>
<TABLE WIDTH="98%" CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr">
<TR>
   <TD CLASS="clean">
      <TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
      <TR>
         <TD CLASS="clean"><IMG SRC="/themes/default/titlebar_left.gif" WIDTH="26" HEIGHT="38" ALT=""></TD>
         <TD CLASS="clean" BACKGROUND="/themes/default/titlebar_middle.gif" WIDTH="35%"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="1" ALT=""></TD>
         <TD CLASS="clean"><IMG SRC="/themes/default/titlebar_caption_left.gif" WIDTH="30" HEIGHT="38" ALT=""></TD>
         <TD CLASS="clean" BACKGROUND="/themes/default/titlebar_caption_middle.gif" WIDTH="30%" NOWRAP DIR="ltr"><BR><DIV CLASS="titlebar">AUSTRALIAN members</DIV></TD>
         <TD CLASS="clean"><IMG SRC="/themes/default/titlebar_caption_right.gif" WIDTH="30" HEIGHT="38" ALT=""></TD>
         <TD CLASS="clean" BACKGROUND="/themes/default/titlebar_middle.gif" WIDTH="35%"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="1" ALT=""></TD>
         <TD CLASS="clean"><IMG SRC="/themes/default/titlebar_right.gif" WIDTH="26" HEIGHT="38" ALT=""></TD>
      </TR>
      </TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="clean">
      <TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
      <TR>
         <TD CLASS="clean" BACKGROUND="/themes/default/border_left.gif" STYLE="background-repeat: repeat"><IMG SRC="/images/spacer.gif" WIDTH="16" HEIGHT="1" ALT=""></TD>
         <TD CLASS="inside" WIDTH="100%" DIR="ltr">
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
   <TD CLASS="toprow" ALIGN="left">&nbsp;Moderated by: <A CLASS="username" HREF="/users/4.html" onclick="show_menu(event, this, 'menu4')">Dr Trevor Marshall</A></TD>
   <TD CLASS="toprow" ALIGN="center"><B>&nbsp;</B></TD>
   <TD CLASS="toprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>
<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/new_topic.php?forum_id=11">New Topic</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/view_topic.php?id=7541&forum_id=11&print=1">Print</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>

</TABLE>
<TABLE WIDTH="100%" CELLPADDING="3" CELLSPACING="0" BORDER="0">
<TR><TH>Author</TH><TH COLSPAN="2">Post</TH></TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/2994.html" onclick="show_menu(event, this, 'menu2994')">Tessa</A><BR>member<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Wed Nov 30th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">109</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Tue Nov 7th, 2006 08:35</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81649&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p81649"></A>Hi DR. Marshall,<br />
<br />
I'm very happy + excited that you are coming to Perth.<br />
<br />
It was through hearing you on the 6PR talkback radio program + speaking to Peter VanDer A that prompt me to join the MP.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
<br />
It has worked wonders for me, I can't say I'm completely cured yet, but I,m on the way to a complete recovery.<br />
<br />
I would love to meet with you + other members[pa tients] in an informal setting.I would be happy to open my home for this meeting.The only problem is that only about 30-40 people would be able to be invited [asked].<br />
<br />
If this idea is of any help please cotact me,as I would be more than happy to help organise this.<br />
<br />
All the best on your work,+ your Australian visit.<br />
<br />
regards,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Rosa.&nbsp;&nbsp;<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>Sarcoidosis/lungs and chest nodes joint pain Ph1Mar06 ModPh2Sep06 Ph2Apr08 NoIRs low lux home cover up
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/4.html" onclick="show_menu(event, this, 'menu4')">Dr Trevor Marshall</A><BR>Foundation Staff<BR><IMG SRC="/images/avatars/4.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sat Jul 10th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Thousand_Oaks&region=California&country=USA">Thousand Oaks</A>, <A CLASS="userlocation" HREF="/view_user.php?region=California&country=USA">California</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">10195</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Wed Nov 8th, 2006 05:04</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81742&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p81742"></A>Rosa,<br />
Thank you for your kind offer. Let's see how things work out for Perth. At this point nothing has been finalized except that I will be there <IMG SRC="/images/emoticons/smile.gif" ALT=":)"><br />
<br />
<b>Please note that the presentation at John Curtin School of Medical Research, ANU, has been rescheduled to 2:30pm, so that the 4pm Fire Drill does not come in the middle of my presentation</b><IMG SRC="/images/emoticons/smile.gif" ALT=":)"><IMG SRC="/images/emoticons/smile.gif" ALT=":)"><br />
 <P></P><P><I></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/501.html" onclick="show_menu(event, this, 'menu501')">Mirek</A><BR>Member<BR><IMG SRC="/images/avatars/501.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sun Aug 29th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Perth&country=Australia">Perth</A>, <A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">57</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Wed Nov 8th, 2006 12:39</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81785&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p81785"></A>Hi Trevor,<br />
<br />
Would be great to meet you finally in Perth after 4 years on MP? <br />
<br />
Thanks to you my health is exceptional. I don't seem to be spending much time on the MP website these days, as I'm able to work&nbsp;full time, travel, eat anyting I like and be outdoors (though forever conscious of the sun. Wearing a hat is part of daily routine). As for the Sarc, as far as I can tell free of it. No more herx felt.<IMG SRC="/images/emoticons/smile.gif" ALT=":)"><br />
<br />
Cheers<br />
<br />
Mirek<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>Sarc Oct01, Started MP in Oct02, Completed Phase 3 in March 07. Feeling a lot better, no sign of sarc in lungs, 90% health. Nexium 40mg daily, Benicar 3X daily, Mino and Zith
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/11.html" onclick="show_menu(event, this, 'menu11')">Foundation Staff.</A><BR>.<BR><IMG SRC="/images/avatars/11.png" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sun Jul 11th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo">&nbsp;</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">1175</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Thu Nov 9th, 2006 00:24</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81837&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p81837"></A>I know many of you in Australia are making plans to see Trevor on his upcoming tour. We now have a related press release online <A HREF="http://www.prweb.com/releases/2006/11/prweb475440.htm" TARGET="_blank">at this link.</A><br />
<br />
We'll be thinking about you and celebrating the new organization in your country.<br />
<br />
Belinda<P></P><P><I>Last edited on Thu Nov 9th, 2006 00:46 by <A CLASS="username" HREF="/users/11.html" onclick="show_menu(event, this, 'menu11')">Foundation Staff.</A></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/4.html" onclick="show_menu(event, this, 'menu4')">Dr Trevor Marshall</A><BR>Foundation Staff<BR><IMG SRC="/images/avatars/4.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sat Jul 10th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Thousand_Oaks&region=California&country=USA">Thousand Oaks</A>, <A CLASS="userlocation" HREF="/view_user.php?region=California&country=USA">California</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">10195</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Thu Nov 9th, 2006 01:09</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81842&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p81842"></A>The flyers for the JCSMR and Bio21 presentations are now online at URLs<br />
<br />
<A HREF="http://autoimmunityresearch.org/Marshall_JCSMR_flyer.pdf" TARGET="_blank">http://autoimmunityresearch.org/Marshall_JCSMR_flyer.pdf</A><br />
<br />
<A HREF="http://autoimmunityresearch.org/Marshall_Bio21_flyer.pdf" TARGET="_blank">http://autoimmunityresearch.org/Marshall_Bio21_flyer.pdf</A><br />
<br />
Please share them with your physicians and friends.<br />
  <P></P><P><I></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/2743.html" onclick="show_menu(event, this, 'menu2743')">edj2001</A><BR>Support Team<BR><IMG SRC="/images/avatars/2743.gif" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Tue Oct 18th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=_Allen&region=Texas&country=USA"> Allen</A>, <A CLASS="userlocation" HREF="/view_user.php?region=Texas&country=USA">Texas</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">298</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Thu Nov 9th, 2006 15:09</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=81907&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p81907"></A><FONT FACE="Times New Roman"><FONT SIZE="3">Congratulations on the new organization in your country.&nbsp; Look forward to pictures of the various events.</FONT></FONT><FONT FACE="Times New Roman"><FONT SIZE="3">&nbsp;</FONT></FONT><br />
<br />
<FONT FACE="Times New Roman"><FONT SIZE="3">Best regards,</FONT></FONT><br />
<br />
<FONT FACE="Times New Roman"><FONT SIZE="3">Gene </FONT></FONT><P></P><P><I></I></P>
<BR><BR>____________________<BR>Sarc98 A.Fib uveitis sk cancer basal/melanoma colon tmr bladder tmr bph| propafenone Armour proscar Guaifensin | 1,25D=50 10/05| 25D=7 4/08|  <A HREF="http://bacteriality.com/2008/07/18/interview24/" TARGET="_blank">Gene's Story</A>| avd l&amp;D|
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/171.html" onclick="show_menu(event, this, 'menu171')">Aussie Barb</A><BR>member<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Thu Jul 22nd, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">19547</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sat Nov 11th, 2006 02:38</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82072&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82072"></A>reposting: for those who have not seen the latest: <br />
<br />
<b>TREVOR'S&nbsp;AUSTRALIAN VISIT NOVEMBER 12 to 21<br />
<br />
</b>Meeting times for the various patient sessions are now being finalised<br />
<br />
<b>The <u>Sydney</u> Patient Session</b> is now&nbsp;on the <b>morning of <br />
<br />
<u>Saturday</u> 11 November</b>.<br />
<br />
The Sydney patient meeting will be preceeded by a short inaugural meeting of the Australian Autoimmunity Foundation.<br />
<br />
The timetable will be&nbsp;a <b>10.30am meeting</b> <b>of the Foundation</b> <br />
- followed by an <FONT FACE="verdana"><b>11.00 am presentation and Q&amp;As by Dr Marshall.<br />
<br />
</b></FONT><FONT FACE="verdana"><b>Place <br />
</b><FONT COLOR="black"><FONT SIZE="2">The Ku-ring-gai Library Meeting Room, which &nbsp;is located adjacent to Ku-ring-gai Library, at 799 Pacific Highway, Gordon.</FONT></FONT><br />
<br />
</FONT><A HREF="http://www.kmc.nsw.gov.au/index.cfm?objectId=8EDCC7B0-625F-4F98-A70D4091E0543718" TARGET="_blank"><FONT FACE="verdana">Access and parking details</FONT></A><FONT FACE="verdana"> <br />
<br />
I hope that not too many are inconvenienced by this unavoidable change of arrangement<br />
<br />
RobertTownsend</FONT><br />
<br />
<FONT FACE="verdana"><b>Canberra Members</b> who are able to -&nbsp;are travelling to this Sydney meeting.</FONT><br />
<br />
<FONT FACE="verdana"><FONT COLOR="red"><b>REPORT</b></FONT>: see <A HREF="http://www.marshallprotocol.com/forum11/7703.html" TARGET="_blank">Trevor Down-Under</A> <br />
</FONT>...............................<br />
<br />
<b>The <u>Brisbane</u> Patient Session</b> is&nbsp;<br />
<br />
<b>2.30pm</b> <b>&nbsp;<u>Monday</u> November 13</b> <br />
<br />
at the New Farm Library Community Hall. <br />
...............................<br />
<br />
<b>2:30pm <u>Wednesday</u>:<br />
<br />
Please note that the presentation at John Curtin School of Medical Research, ANU, has been rescheduled to 2:30pm Wednesday, so that the 4pm Fire Drill does not come in the middle of my presentation</b><IMG SRC="/images/emoticons/smile.gif" ALT=":)"><IMG SRC="/images/emoticons/smile.gif" ALT=":)"><br />
<br />
...............................<br />
<br />
<b>The <u>Melbourne</u> Patient Session</b> is now confirmed as being :<br />
<br />
<b>Time</b> 3.30 pm to 5.00 pm on <b><u>Thursday</u> November 16<br />
<br />
Place</b> Phylis Hore Room, Rear of Kew Library, Cotham Road (Cnr Civic Drive) Kew 109 Tram Stop No 35<br />
<br />
<b>Facilities</b> : Wheelchair access and adjacent disabled parking<br />
<br />
<b>Lighting</b> : The room is used as a daytime film theatrette and so can be darkened to our needs<br />
<br />
...............................<br />
<br />
<b>A patient session in <u>Adelaide</u></b>&nbsp;is now scheduled <br />
<br />
for <b>3.30 pm</b> on the afternoon of <b><u>Friday</u> 17 November</b>. <br />
<br />
The venue&nbsp;is&nbsp;the ground floor <b>foyer</b> of the&nbsp;<b>HOLIDAY INN</b>&nbsp;<u>65 Hindley Street</u> Adelaide. <br />
<b>NOTE</b>:<br />
<b>Holiday Inn</b> is set back&nbsp;from the road, and has only a 20ft wide fascia, and so is easy to walk&nbsp;straight past.&nbsp; It is roughly opposite the underground arcade from Hindley&nbsp;through to the Railway station.<br />
.....................<br />
<br />
For the <b>Western Australian</b> members -&nbsp;<br />
<br />
Dr Marshall&nbsp;will be visiting <b><u>Perth</u></b> <br />
<br />
on the evening of <b>Sunday</b>&nbsp;<b>19th, the 20th and morning of 21st November</b>. <br />
<br />
Is there any interest in organizing a get-together?<br />
<br />
Let's see how things work out for Perth. At this point nothing has been finalized except that I will be there <IMG SRC="/images/emoticons/smile.gif" ALT=":)">&nbsp;please see <A HREF="http://www.marshallprotocol.com/view_topic.php?id=7541&amp;forum_id=11&amp;jump_to=81627#p81627" TARGET="_blank">Dr Marshall post</A> <br />
<br />
An Interview with Perth ABC radio is being organised .. <br />
<br />
any meetings will have to organised around this interview time&nbsp;once the details are finalised.<br />
<br />
<b>Belinda</b> is the contact for final details.&nbsp; see the press release online <A HREF="http://www.prweb.com/releases/2006/11/prweb475440.htm" TARGET="_blank">at this link.</A><br />
<br />
The flyers for the JCSMR and Bio21 presentations are now online at URLs<br />
<br />
<A HREF="http://autoimmunityresearch.org/Marshall_JCSMR_flyer.pdf" TARGET="_blank">http://autoimmunityresearch.org/Marshall_JCSMR_flyer.pdf</A><br />
<br />
<A HREF="http://autoimmunityresearch.org/Marshall_Bio21_flyer.pdf" TARGET="_blank">http://autoimmunityresearch.org/Marshall_Bio21_flyer.pdf</A><br />
<br />
Please share them with your physicians and friends.<P></P><P><I></I></P>
<BR><BR>____________________<BR>♥Barb♥: Dx Inflammation - Endocrine Imbalance 2003| Depression| 24+ years not Dx| MP Aug04| lymphedema| <A HREF="http://tinyurl.com/9qvfff" TARGET="_blank">ABC of MP</A>| <A HREF="http://tinyurl.com/2677lwt" TARGET="_blank">Barb's Story</A>|
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/1456.html" onclick="show_menu(event, this, 'menu1456')">Sydney Chris</A><BR>Member<BR><IMG SRC="/images/avatars/galleries/animals/bird.gif" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Fri Feb 18th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Sydney&country=Australia">Sydney</A>, <A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">465</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sat Nov 11th, 2006 09:41</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82102&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82102"></A>The Sydney meeting was really well attended.. I counted around 30 people, some with partners, friends or carers.<br />
<br />
Speaking for myself at least, it was great to be able to put faces and stories to the names and to also be able to personally thank Dr Marshall as well as the many members who have assisted me thus far..<IMG SRC="/images/emoticons/smile.gif" ALT=":)">. <br />
<br />
I hope the other states are able to get a good turn out and get the cohort benefits we were able to get today, it really was a positive and supportive experience which can only help patients and their partners get through this rocky road just that bit easier...<IMG SRC="/images/emoticons/smile.gif" ALT=":)">. <br />
<br />
I would genuinely encourage you if at all possible to attend these sessions, meet Liz, Dr Marshall and your peers.<br />
<br />
Best to all..<IMG SRC="/images/emoticons/smile.gif" ALT=":)"><br />
<br />
Chris<P></P><P><I>Last edited on Sat Nov 11th, 2006 09:44 by <A CLASS="username" HREF="/users/1456.html" onclick="show_menu(event, this, 'menu1456')">Sydney Chris</A></I></P>
<BR><BR>____________________<BR>Post viral syndrome IgG deficiency 125D74 IgG shots Ph1Mar05 Ph2Nov05 ModPh2Jan06 r/t KFTs Ph3Aug07 NoIRs lite exp r/t commute 25D&lt;7.2(Jan07) 25D14.4(Mar08)
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/2086.html" onclick="show_menu(event, this, 'menu2086')">robyno</A><BR>Member<BR><IMG SRC="/images/avatars/2086.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Wed Jun 15th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Canberra&country=Australia">Canberra</A>, <A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">256</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sun Nov 12th, 2006 03:57</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82171&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82171"></A>I whole-heartedly agree with Chris.&nbsp; This meeting was wonderful from lots af perspectives - meeting Trevor and Liz and being able to thank them in person meant a lot to all of us I think.&nbsp; And meeting each other was very special - would love to be there at all the meetings around the country to meet as many MPers and their families as possible, but as that is not possible I'll just look forward to reading about them on the Board.<br />
<br />
I am very annoyed at myself for not taking any photos - had the camera out but then got worried about the flash and MP eyes so I put it away again.&nbsp; Will try to do better on Wed in Canberra.<br />
<br />
Regards, and thanks to all who made yesterday's meeting so memorable,<br />
<br />
Robyn<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>Mum of Matt 15 yrs 45 kg, Rickettsia+Lyme sympt,~90% recovered; Noirs Aug05, avoid light&amp;D, Beni 13Sep05 20mg Q6H; in Ph 3 now &amp; has his life back!!
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/2375.html" onclick="show_menu(event, this, 'menu2375')">jrfoutin</A><BR>Research Team<BR><IMG SRC="/images/avatars/2375.gif" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Tue Aug 9th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?region=Oregon&country=USA">Oregon</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">4340</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sun Nov 12th, 2006 06:18</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82185&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82185"></A>You know, much of what you have said I noticed at LAX conference too. I know I pestered poor Dr Marshall with my thank you's on more than one occasion. Hard not to. Noticed others did too. What a gift he has given to us all. <br />
<br />
I am really enjoying seeing your responses so similar to what I experienced earlier this year. What an amazing and wonderful thing for Australia to have this opportunity with their own native son and his dear wife. So much good there!<br />
<br />
Yes! camera and pictures. Reports are fun too, thank you all for your perspectives.--Janet<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>Sarcoidosis 125D61, MP10/05 ModP2 12/05 Ph2 6/06 Ph3 10/06, NoIRs limited outings covered, 2/08 25D6.2, 10/08 25D6.9
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/542.html" onclick="show_menu(event, this, 'menu542')">jillian</A><BR>member<BR><IMG SRC="/images/avatars/542.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Tue Sep 7th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Rural_Southwestern&region=North_Dakota&country=USA">Rural Southwestern</A>, <A CLASS="userlocation" HREF="/view_user.php?region=North_Dakota&country=USA">North Dakota</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">282</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sun Nov 12th, 2006 09:55</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82196&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82196"></A>In addition to the wonderful excitement of the new AAF and&nbsp;the updates on the meetings, I must say that the press release and flyers are AWESOME. I'm sending them to my MP doc and chiropractor on Monday. (Don't see the chiro very much any more, the MPs allowing my body to do its job.)<br />
<br />
'til later,<br />
Jillian<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>PulSarc79,FMS,CFIDS,etc,disabled93. AvoidD/Noirs Aug02. Oct02: 1,25D=42 NTfrzen; Apr05:25D=10. P1 Oct05-Feb06; ModP2C Feb-Nov06; P2 Nov14-Dec06; ModP2BSS Jan-Mar07; ModP2CBSS Mar07-Oct08. P2 Nov08-Apr09. Temporary MP break May09-Dec09.
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/4.html" onclick="show_menu(event, this, 'menu4')">Dr Trevor Marshall</A><BR>Foundation Staff<BR><IMG SRC="/images/avatars/4.jpg" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sat Jul 10th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Thousand_Oaks&region=California&country=USA">Thousand Oaks</A>, <A CLASS="userlocation" HREF="/view_user.php?region=California&country=USA">California</A> <A CLASS="userlocation" HREF="/view_user.php?country=USA">USA</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">10195</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sun Nov 12th, 2006 20:22</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82232&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82232"></A>Robyn,<br />
I took some photos, a few seconds of video. I will put it online when I get a few spare moments.<br />
<P></P><P><I></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/2768.html" onclick="show_menu(event, this, 'menu2768')">sherbal</A><BR>Health Professional<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Fri Oct 21st, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Perth&country=Australia">Perth</A>, <A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">3</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Mon Nov 13th, 2006 10:06</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82328&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82328"></A>Hi Trevor<br />
<br />
Look forward to seeing you in Perth.<br />
<br />
I have several good contacts in ABC Radio here if you would like to set up an interview.<br />
<br />
Has a meeting time been made yet?<br />
<br />
<br />
Regards<br />
<br />
David Main<br />
<P></P><P><I></I></P>
<BR><BR>____________________<BR>Dr David Main
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/171.html" onclick="show_menu(event, this, 'menu171')">Aussie Barb</A><BR>member<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Thu Jul 22nd, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">19547</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Wed Nov 15th, 2006 09:05</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82522&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82522"></A><b>PERTH MEETING TIME</b>:<i> <br />
</i><br />
We are setting down the Perth meeting time for <br />
<br />
<b>Sunday 19th</b> &nbsp;<b>6.00 pm</b> at <u>Private Venue</u>. (Perth Member Home) <br />
<br />
<b>RSVP &amp; details&nbsp;PHONE Peter: <FONT FACE="Arial"><FONT SIZE="3">08 9361 2890</FONT><FONT SIZE="1">&nbsp;</FONT></FONT><FONT FACE="verdana"><FONT SIZE="2">Daytime</FONT></FONT></b><br />
<br />
Needing to know expected numbers ahead of time&nbsp;if possible. <br />
<br />
Any questions: Please&nbsp;contact (email/PM)&nbsp;<b>Rosa</b> or <b>DianeW</b>&nbsp;Thank you..<br />
<br />
We might end up&nbsp;without a separate doctors meeting in Perth.<P></P><P><I></I></P>
<BR><BR>____________________<BR>♥Barb♥: Dx Inflammation - Endocrine Imbalance 2003| Depression| 24+ years not Dx| MP Aug04| lymphedema| <A HREF="http://tinyurl.com/9qvfff" TARGET="_blank">ABC of MP</A>| <A HREF="http://tinyurl.com/2677lwt" TARGET="_blank">Barb's Story</A>|
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/4588.html" onclick="show_menu(event, this, 'menu4588')">CFSSSA</A><BR>..<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Wed Nov 15th, 2006</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo">&nbsp;</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">2</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Thu Nov 16th, 2006 06:31</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82625&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82625"></A>Hi<br />
<br />
I have come here to this forum because I am unable to contact  R Townsend as named on the media release we were emailed last week.  I wanted to ask about the Adelaide patients' meeting<br />
<br />
a.  whether this is an open meeting<br />
b.  Whether the details on this board re location and time are still current<br />
<br />
We can get an sms message to most of our members to let them know it is on if that is appropriate.<br />
<br />
Best Regards<br />
Peter Mitchell<br />
Secretary<br />
CFS Soc SA<P></P><P><I>Last edited on Thu Nov 16th, 2006 06:32 by <A CLASS="username" HREF="/users/4588.html" onclick="show_menu(event, this, 'menu4588')">CFSSSA</A></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/4588.html" onclick="show_menu(event, this, 'menu4588')">CFSSSA</A><BR>..<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Wed Nov 15th, 2006</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo">&nbsp;</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">2</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Thu Nov 16th, 2006 09:26</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82634&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82634"></A>Thanks to Aussie Barb and Robert Townsend, I am now clued in to the information I needed.  We will not be sending the SMS,    but we have the information to pass on to members who may need it.  <br />
<br />
 <br />
Best Regards<br />
Peter Mitchell<br />
Secretary<br />
CFS Soc SA<P></P><P><I></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/171.html" onclick="show_menu(event, this, 'menu171')">Aussie Barb</A><BR>member<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Thu Jul 22nd, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">19547</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sat Nov 18th, 2006 01:30</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82795&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82795"></A><b>Announcing Interview with Dr Marshall:</b>&nbsp;<br />
<br />
<b>ABC Radio in Perth, Western Australia:</b><br />
<br />
<b>Tuesday</b> 21st November&nbsp;<b>10am</b> for about 20 minutes<br />
<br />
720 ABC radio in Perth.&nbsp; <A HREF="http://www.abc.net.au/perth/" TARGET="_blank"><FONT COLOR="#800080">http://www.abc.net.au/perth/</FONT></A><br />
<br />
To listen live ONLINE&nbsp;<A HREF="http://www.abc.net.au/wa/live_stream.htm" TARGET="_blank">http://www.abc.net.au/wa/live_stream.htm</A><br />
<br />
Time differences: <A HREF="http://www.timeanddate.com/worldclock/" TARGET="_blank"><FONT COLOR="#0000ff"><FONT SIZE="2">World Clock</FONT></FONT></A><FONT SIZE="2"><FONT COLOR="#000000">&nbsp; <br />
.......................................................</FONT></FONT><br />
<br />
<FONT SIZE="2">Dr Marshall writes:<br />
<b>A year ago</b>, Liam Bartlett on ABC Radio, in Perth, broadcast a phone interview with me:<br />
<A HREF="http://www.abc.net.au/wa/stories/s1487053.htm" TARGET="_blank">http://www.abc.net.au/wa/stories/s1487053.htm</A></FONT><P></P><P><I></I></P>
<BR><BR>____________________<BR>♥Barb♥: Dx Inflammation - Endocrine Imbalance 2003| Depression| 24+ years not Dx| MP Aug04| lymphedema| <A HREF="http://tinyurl.com/9qvfff" TARGET="_blank">ABC of MP</A>| <A HREF="http://tinyurl.com/2677lwt" TARGET="_blank">Barb's Story</A>|
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/1534.html" onclick="show_menu(event, this, 'menu1534')">Moxie</A><BR>member.<BR><IMG SRC="/images/avatars/1534.gif" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Fri Mar 4th, 2005</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?city=Brisbane&country=Australia">Brisbane</A>, <A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">196</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Sat Nov 18th, 2006 02:23</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82803&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p82803"></A>Moxie's post moved to <A HREF="http://www.marshallprotocol.com/view_topic.php?id=7703&amp;forum_id=11&amp;jump_to=82969#p82969" TARGET="_blank">Trevor down under</A>&nbsp;meeting reports.. <P></P><P><I></I></P>
<BR><BR>____________________<BR>CFS 28 years - FMS.
   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow1">
<A CLASS="username" HREF="/users/11.html" onclick="show_menu(event, this, 'menu11')">Foundation Staff.</A><BR>.<BR><IMG SRC="/images/avatars/11.png" ALT=""><BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Sun Jul 11th, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo">&nbsp;</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">1175</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Mon Nov 20th, 2006 01:58</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=82972&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow1" COLSPAN="2"><A NAME="p82972"></A>JUST A REMINDER...<br />
<br />
At about this time -- <b>24 hours from now</b>, <FONT COLOR="red">anyone</FONT> who wants to hear Perth ABC radio interview Trevor Marshall can get it on their computer <A HREF="http://www.abc.net.au/wa/live_stream.htm" TARGET="_blank">using live streaming audio</A>. <br />
<br />
You may want to check it out now, so you will have everything ready for tomorrow. You will only hear audio when the program in on the air. The broadcast begins on the hour and runs for two hours. Trevor's interview will begin the program.<br />
<br />
Belinda<P></P><P><I></I></P>

   </TD>
</TR><TR>
   <TD VALIGN="top" WIDTH="25%" ROWSPAN="2" CLASS="postrow2">
<A CLASS="username" HREF="/users/171.html" onclick="show_menu(event, this, 'menu171')">Aussie Barb</A><BR>member<BR>&nbsp;<BR><BR>
<TABLE CELLPADDING="1" CELLSPACING="0" BORDER="0">
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Joined:&nbsp;</TD><TD CLASS="userinfo">Thu Jul 22nd, 2004</TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Location:&nbsp;</TD><TD CLASS="userinfo"><A CLASS="userlocation" HREF="/view_user.php?country=Australia">Australia</A></TD></TR>
   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Posts:&nbsp;</TD><TD CLASS="userinfo">19547</TD></TR>

   <TR><TD CLASS="userinfo" VALIGN="top" ALIGN="right">Status:&nbsp;</TD><TD CLASS="userinfo">
<FONT COLOR="#888888">Offline</FONT>
</TD></TR>

</TABLE>
   </TD>
   <TD CLASS="posttoprow" NOWRAP>&nbsp;Posted: Tue Nov 21st, 2006 00:06</TD><TD CLASS="posttoprow" STYLE="border-right: 1px inset gray" ALIGN="right">
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>

<TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541&post_id=83078&quote=1">Quote</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_left.gif" WIDTH="16" HEIGHT="34" ALT=""></TD><TD CLASS="clean" BACKGROUND="/themes/default/button2_middle.gif" VALIGN="top" NOWRAP DIR="ltr"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="9" ALT=""><BR><A CLASS="navbutton" HREF="/reply.php?topic_id=7541">Reply</A></TD><TD CLASS="clean"><IMG SRC="/themes/default/button2_right.gif" WIDTH="16" HEIGHT="34" ALT=""></TD>
</TR></TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="postrow2" COLSPAN="2"><A NAME="p83078"></A><b>PLEASE NOTE ABC CANCELLED</b>:<br />
<br />
The ABC Radio Interview has been cancelled, as there is too much news active over here this morning.<br />
<br />
That is actually quite fortunate, as I need to squeeze in another presentation down at Murdoch Uni, in addition to the one I did yesterday at Royal Perth Hospital.<br />
<br />
More details later...<br />
<br />
..Trevor..<P></P><P><I></I></P>
<BR><BR>____________________<BR>♥Barb♥: Dx Inflammation - Endocrine Imbalance 2003| Depression| 24+ years not Dx| MP Aug04| lymphedema| <A HREF="http://tinyurl.com/9qvfff" TARGET="_blank">ABC of MP</A>| <A HREF="http://tinyurl.com/2677lwt" TARGET="_blank">Barb's Story</A>|
   </TD>
</TR><TR>
   <TD CLASS="buttonrow" COLSPAN="3">
      <TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
         <TR><TD CLASS="buttonrow"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="4" ALT=""><BR>&nbsp;Current time is 04:20</TD><TD CLASS="buttonrow" ALIGN="right"><B>Page:</B> &nbsp;<A HREF="/forum11/7541-1.html"><IMG SRC="/images/buttons/first_page.gif" BORDER="0" ALT="First Page"> </A><A HREF="/forum11/7541-2.html"><IMG SRC="/images/buttons/left_arrow.gif" BORDER="0" ALT="Previous Page"></A>  &nbsp;<A HREF="/forum11/7541-1.html">1</A> &nbsp;<A HREF="/forum11/7541-2.html">2</A> &nbsp;3 &nbsp;<A HREF="/forum11/7541-4.html">4</A> &nbsp;<A HREF="/forum11/7541-5.html">5</A> &nbsp;<A HREF="/forum11/7541-6.html">6</A> &nbsp;<A HREF="/forum11/7541-7.html">7</A> &nbsp;<A HREF="/forum11/7541-8.html">8</A>&nbsp; ...&nbsp; <A HREF="/forum11/7541-4.html"><IMG SRC="/images/buttons/right_arrow.gif" BORDER="0" ALT="Next Page"> </A><A HREF="/forum11/7541-15.html"><IMG SRC="/images/buttons/last_page.gif" BORDER="0" ALT="Last Page"></A> &nbsp;</TD></TR>
      </TABLE>
   </TD>
</TR>
</TABLE>
         </TD>
         <TD CLASS="clean" BACKGROUND="/themes/default/border_right.gif" STYLE="background-repeat: repeat"><IMG SRC="/images/spacer.gif" WIDTH="16" HEIGHT="1" ALT=""></TD>
      </TR>
      </TABLE>
   </TD>
</TR>
<TR>
   <TD CLASS="clean">
      <TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
      <TR>
         <TD CLASS="clean"><IMG SRC="/themes/default/border_bottom_left.gif" WIDTH="26" HEIGHT="26" ALT=""></TD>
         <TD CLASS="clean" COLSPAN="5" BACKGROUND="/themes/default/border_bottom_middle.gif" WIDTH="100%"><IMG SRC="/images/spacer.gif" WIDTH="1" HEIGHT="1" ALT=""></TD>
         <TD CLASS="clean"><IMG SRC="/themes/default/border_bottom_right.gif" WIDTH="26" HEIGHT="26" ALT=""></TD>
      </TR>
      </TABLE>
   </TD>
</TR>
</TABLE>
</CENTER>
<!--WowBB separator-->
<BR>
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" DIR="ltr"><TR>


</TR></TABLE>
</P>
<BR>
<NOSCRIPT>
<CENTER><I>Parts of this bulletin board may not function unless you enable JavaScript (also called Active Scripting) in your browser.</I></CENTER>
</NOSCRIPT>
<BR>
<DIV CLASS="statusline" DIR="ltr">

<p class=titlebar><b>* We can help you understand chronic disease, but only your physician is licensed to give you medical care *</p>Powered by <A CLASS="nummessages" HREF="http://www.wowbb.com" TITLE="WowBB Forum Software" TARGET="_blank">WowBB 1.7</A> - Entire site Copyright &copy; 2004-2010 Autoimmunity Research Foundation, All Rights Reserved<br>Click <A href="http://autoimmunityresearch.org/privacy.htm">here</a> to view our PRIVACY POLICY<BR>Page processed in 0.1863 seconds (20% database + 80% PHP). 20 queries executed.
</DIV>



</BODY>
</HTML>

<!--WowBB separator-->