﻿function top () {
return ('<div id="header"> New York Cancer Consortium <sup>&#174;</sup><p>Advancing Patient Care Through Research and Education</p><br/><br/></div>\
		 	<div id="navbar">\
				<a href="../default.html" class="button">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Home&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> \
				<a href="../memberlist.html" class="button">&nbsp;Member Directory&nbsp;</a> \
		 		<a href="../proto.html" class="button">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Protocol List&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> \
		 		<a href="../statcenter.html" class="button">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Statistical Center&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> \
		 		<a href="../coordcenter.html" class="button">&nbsp;&nbsp;&nbsp;&nbsp;Coordinating Center&nbsp;&nbsp;&nbsp;&nbsp;</a> \
		 	</div>');
		 	}

function newsTxt () {
return('<p style="text-align: center; padding: 1px; font-size: 12pt; font-weight:bold; border-bottom:#D4E2EE \
medium outset; border-right: #D4E2EE medium outset; border-top: #D4E2EE medium outset; \
border-left: #D4E2EE medium outset;"><a href="http://plwc.org" target="_blank">Information for Patients</a></p><hr />\
<p style="text-align: center; padding: 1px; font-size: 12pt; font-weight:bold; border-bottom:#D4E2EE \
medium outset; border-right: #D4E2EE medium outset; border-top: #D4E2EE medium outset; \
border-left: #D4E2EE medium outset;"><a href="../archives.html"> Educational Meeting Archives\
</a><br /></p><hr />\
<p style="text-align: center; padding: 1px; font-size: 12pt; font-weight:bold; border-bottom:#D4E2EE \
medium outset; border-right: #D4E2EE medium outset; border-top: #D4E2EE medium outset; \
border-left: #D4E2EE medium outset;"> <a href="http://www.mecme.org" target="_blank"> Register for Educational Meetings</a> \
</p>\
<p style="text-align:center;"><br /><br /> \
<u>May 14, 2010</u><br />\
<a href="http://www.mecme.org/site/display.php?crs_id=6642" target="_blank">5th Annual <br/>New York Cancer Consortium<sup>&#174;</sup><br /> Developmental Therapeutics Symposium<br /></a></p>')
}

function setCookie(c_name,value,expiredays)
{var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}

function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}