
/*
 * -------
 * :ATTRIBUTION NOTICE BEGINS
 *
 * The following JSMsg functions are:
 * 
 *    (C) Copyright 2002 - 2004, Creativyst, Inc.
 *               ALL RIGHTS RESERVED
 * 
 * For more information go to:
 *   http://www.Creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 * or email:
 *            Support@Creativyst.com
 * 
 * Licensed under the Open Software License version 1.1
 *
 * END ATTRIBUTION NOTICE:
 * -------
 *
 * The following version token is 
 * required by aggregators
 * -------
 * JSMsgVersion:1.0a
 * -------
 *
 * Made by: JSMFeed.pl v1.0e
*/
/* JSCpragma:StartCompress
*/
/* These functions are free software; you can redistribute 
 * them and/or modify them under the terms of the Open 
 * Software License (OSL) version 1.1 as published by
 * the Open Source Initiative;
 * 
 * This program is distributed in the hope that it will 
 * be useful, but WITHOUT ANY WARRANTY; without even the 
 * implied warranty of MERCHANTABILITY or FITNESS FOR A 
 * PARTICULAR PURPOSE. See the Open Software License
 * version 1.1 for more details.
 * 
 * For the complete details of the Open Software License
 * please visit the Open Source Initiative website.
 *
 * 
 * These functions are part of a shared convention.
 * called JSMsg.  Please see the JSMsg document
 * for more details.
 *
 * www.creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 *
 * -------------------------------------------
 * Parts of this code were automatically
 * generated and may contain copyrighted
 * content from other sources as well.
 * Such content may not be used without
 * first obtaining explicit permissions
 * from their sources.
 *
 *
*/

function nn_JSMsg() {

this.Title = Array([this.ShortListSize]);
this.Link = Array([this.ShortListSize]);

this.MetaKeys = Array([3]);
this.MetaVals = Array([3]);



 this.ShortListSize = 1;
 this.BeenLoaded = 0;
 this.dispNumb;

 this.Msg = function(msgPart, msgOffset)
 {
    document.write( this.Get(msgPart, msgOffset) );
 }

 this.MsgDay = function(msgPart)
 {
    document.write( this.GetDay(msgPart) );
 }

 this.MsgN = function(msgPart, msgNumber)
 {
    document.write( this.GetN(msgPart, msgNumber) );
 }


 this.Get = function(msgPart, msgOffset)
 {
    if(!msgOffset) {
        msgOffset = 0;
    }
    if(!this.BeenLoaded) {
        this.BeenLoaded = 1;
        dispNumb = 
           this.getRandInt(this.ShortListSize);
    }
    return( this.GetN(msgPart, (dispNumb + msgOffset)) );
 }

 this.GetMsgN = function()
 {
	return(this.ShortListSize);
 }

 this.GetDay = function(msgPart)
 {
    var d = new Date();
    var x = d.getDate();
    return( this.GetN(msgPart, x) );
 }


 this.GetN = function(msgPart, msgNumber)
 {
    return( this.GetNCore(msgPart, msgNumber) );
 }

 this.GetNCore = function(msgPart, msgNumber)
 {
    var myTmp;

    if(!msgPart) {
        msgPart = "Body";
    }
    if(!msgNumber) {
        msgNumber = 0;
    }

    if(msgNumber >= this.ShortListSize) {
        msgNumber = msgNumber % this.ShortListSize;
    }

    if(  this.ok(msgPart,"Type") ) {
        return(this.Type[msgNumber]);
    }
    if(  this.ok(msgPart,"Title") ) {
        return(this.Title[msgNumber]);
    }
    if(  this.ok(msgPart, "Desc Description Content") ) {
        return(this.Desc[msgNumber]);
    }
    if(  this.ok(msgPart,"Body") ) {
        return(this.Body[msgNumber]);
    }
    if(  this.ok(msgPart, "Attrib Attribute Source") ) {
        return(this.Attrib[msgNumber]);
    }
    if(  this.ok(msgPart, "Author") ) {
        if(!this.Author[msgNumber]) {
            return(this.Attrib[msgNumber]);
        }
        return(this.Author[msgNumber]);
    }

    if(  this.ok(msgPart,"DayN Day2N Day") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) { 
          myTmp = myTmp.substr(6,2);
          if(  this.ok(msgPart,"Day2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "MonthN Month2N") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) {
          myTmp = myTmp.substr(4,2)
          if(  this.ok(msgPart,"Month2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "Year2N Year4N YearN Year") ) {
        if(this.DateN[msgNumber].length) {
          if(  this.ok(msgPart,"Year2N") ) {
            return(this.DateN[msgNumber].substr(2,2));
          }
          return(this.DateN[msgNumber].substr(0,4));
        }
    }

    if(  this.ok(msgPart,"Time") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,6));
    }
    if(  this.ok(msgPart,"Hour2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,2));
    }
    if(  this.ok(msgPart,"Minute2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(10,2));
    }

    if(  this.ok(msgPart,"Link") ) {
        return(this.Link[msgNumber]);
    }
    if( this.ok(msgPart,"LinkTitle") ) {
        if(this.MetaMsg(msgPart,"Link") && this.MetaMsg(msgPart,"Title") ) {
          if( !this.Link[msgNumber] ) {
              return(this.Title[msgNumber]);
          }

          if( !this.Title[msgNumber] ) {
            this.Title[msgNumber] =  this.Link[msgNumber];              
          }
          myTmp = '<A TARGET="_blank" \n'; 
          myTmp = myTmp + 'HREF="' + this.Link[msgNumber] + '">\n';
          myTmp = myTmp + this.Title[msgNumber] + '</A>\n';

          return(myTmp);

        }
        if( this.MetaMsg(msgPart,"Title") ) {
          return(this.Title[msgNumber]);
        }
        if( this.MetaMsg(msgPart,"Link") ) {
          if( this.Link[msgNumber] ) {
            myTmp = "<A TARGET=\"_blank\" \n"; 
            myTmp = myTmp + "HREF=\"" + this.Link[msgNumber] + "\">\n";
            myTmp = myTmp + this.Link[msgNumber] + "</A>\n";
            return(myTmp);
          }
        }
        return("");
    }
    if( this.ok(msgPart,"Cat Category Subject") ) {
        return(this.Cat[msgNumber]);
    }
    if( this.ok(msgPart,"Thumb") ) {
        return(this.Thumb[msgNumber]);
    }
    if( this.ok(msgPart,"Alt") ) {
        return(this.Alt[msgNumber]);
    }

    return("");
 }




 this.getRandInt = function(RandSz)
 {
    var t, t2, t3;

    t = 0;
    while(t < .000001) {
        t = Math.random();
        t = Math.abs(t);
    }
    t2 = t * 1000000;
    t2 = Math.round(t2);
    t3 = t2 % RandSz;
    return(t3);
 }



 this.ok = function(a, b)
 {
    var t, t2;

    if(!this.is(a,b)) {
        return(0);
    }
    return(this.MetaMsg(a));
 }

 this.is = function(a, b)
 {
    var t, t2;

    t = a + " ";
    t2 = b + " ";
    t2 = t2.toUpperCase();
    t = t.toUpperCase();

    if(t2.indexOf(t) == -1) {
        return(0);
    }
    return(1);
 }


 this.MetaMsg = function(msgCmd)
 {
    var i,l;

    if( this.is(msgCmd, "Title LinkTitle Link LinkTitle ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(1);
    }
    else {
        if(this.MetaKeys) {
            l = this.MetaKeys.length;
            for(i = 0;i < l;i++) {
                if(this.MetaKeys[i] == msgCmd) {
                    return(this.MetaVals[i]);
                }
            }
        }
        return(0);
    }
 }

     

}

nn = new nn_JSMsg();

/* how slow is the with statement */

with( nn ) {
/* Meta values
*/
MetaKeys[0] = "MetaTitle";
MetaVals[0] = "The Scientist : error";
MetaKeys[1] = "MetaLink";
MetaVals[1] = "\n\n\n";
MetaKeys[2] = "MetaLinkTitle";
MetaVals[2] = "<A HREF=\"\n\n\n\" CLASS=\"JSMsg\">The Scientist : error</A>";


/* content vaues:
*/
Title[0] = "The Scientist : error";
Link[0] = "\n\n\n\n	\n\n\n\n<META HTTP-EQUIV=\"expires\" CONTENT=\"0\">\n<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n\n\n\n\n<title>The Scientist : error</title>\n\n\n\n    \n\n\n\n\n\n<link rel=\'stylesheet\' type=\'text/css\' href=\'/stylesheets/reinvention.css\'>\n\n\n\n\n\n<link rel=\'stylesheet\' type=\'text/css\' href=\'/stylesheets/article_styles.css\'>\n\n\n\n\n\n<link rel=\'stylesheet\' type=\'text/css\' href=\'/stylesheets/redesign.css\'>\n\n\n\n\n\n<link rel=\'stylesheet\' type=\'text/css\' href=\'/stylesheets/toolBox.css\'>\n\n\n\n\n\n<script  src=\"/js/SpryEffects.js\" type=\"text/javascript\" > </script>\n\n\n\n\n\n<style>\n\n#pageToolsMenu {\n\n	padding:0px;\n\n	height: 0px;\n\n	overflow: hidden;\n\n	z-index: 99;\n\n}\n\n#panel2Content {\n\n	display: none;\n\n}\n\n#closeWindowImg {\n\n	display: none;\n\n}\n\n</style>\n\n\n\n\n\n<script src=\"/js/mailForm.js\" language=\"javascript\" type=\"text/javascript\"></script>\n\n\n\n\n\n<script src=\"/js/sifr.js\" language=\"javascript\" type=\"text/javascript\"></script>\n\n<link rel=\'stylesheet\' type=\'text/css\' href=\'/stylesheets/sIFR-screen.css\'>\n\n\n\n\n\n<script src=\"/js/html_helper.js\" language=\"javascript\" type=\"text/javascript\"></script>\n\n\n\n\n\n</head>\n\n\n\n\n\n<body>\n\n<!-- Open Main Wrapper -->\n\n<div id=\"wrapper\">\n\n<!-- 468x60 Banner Ad -->\n\n\n\n<div id=\"adbanner1\">\n\n	<!-- Begin 468x60 Banner Ad -->\n\n<script type=\"text/javascript\">\n\n  GA_googleFillSlot(\"topBanner\");\n\n</script>\n\n  	<!-- Close 468x60 Banner Ad -->\n\n</div>\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n    \n\n\n\n\n\n\n<!-- Open Header -->\n<div id=\"header\">\n  <!-- Logo & Nav Header -->\n  <div id=\"logo\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/logo.gif\" alt=\"TheScientist.com - Magazine of the Life Sciences, Every Day, Online\" width=\"378\" height=\"56\" /> </div>\n  <!-- Open Search -->\n  <div id=\"searchBox\">\n\n           <!--  <table width=\"100%\"><tr valign=\"top\"><td><div class=\"smaller\" style=\"color:#ffffff\"><b>&nbsp;&nbsp;Welcome</b> </div></td><td align=\"right\"><div class=\"smaller\" style=\"color:#ffffff\">Please <a href=\"http://registration.the-scientist.com/registration\" id=\"login\">login or register</a></div></td></tr></table> -->\n\n		        \n\n	 <div id=\"welcomeMsg\">&nbsp;&nbsp;Please <a href=\"/login\">Login</a> or <a href=\"/templates/trackable/registration/register.jsp?registrantType=registrant\">Register</a></div>\n	          \n\n\n\n                \n\n\n\n                \n\n\n\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n	\n\n\n\n\n\n\n\n\n\n                \n\n                      <!-- Google CSE Search Box Begins  -->\n\n<form action=\"http://www.the-scientist.com/search/search_results.jsp\" id=\"cse-search-box\">\n\n  <input type=\"hidden\" name=\"cx\" value=\"003264466409666250718:qrpes37jcpu\" />\n\n  <input type=\"hidden\" name=\"cof\" value=\"FORID:11\" />\n\n  <input type=\"text\" name=\"q\" size=\"25\" />\n\n  <input type=\"submit\" name=\"sa\" value=\"Search\" />\n\n</form>\n\n<div id=\"welcomemsg\"><a href=\"http://www.the-scientist.com/search/advanced_search.jsp\">Advanced Search</a></div>\n\n<script type=\"text/javascript\" src=\"http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en\"></script>\n\n<!-- Google CSE Search Box Ends -->\n\n\n\n\n\n\n\n\n\n <!-- Close Search -->\n  </div>\n\n\n\n\n\n\n  <!-- Open Top Nav -->\n  <div id=\"topNav\" class=\"topNav\">\n  \n    <ul>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />\n      </li><li>\n      <a href=\"http://www.the-scientist.com/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/home_a.gif\" alt=\"Home\" width=\"45\" height=\"27\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/home_b.gif\"/></a> </li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />  </li>\n      <li>\n       <a href=\"http://www.the-scientist.com/community/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/community_a.gif\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/community_b.gif\" alt=\"Community\" /></a> </li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" /></li>\n    <li>\n      <a href=\"/toc/2010/02/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/currissue_a.gif\" alt=\"Current Issue\" width=\"102\" height=\"27\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/currissue_b.gif\" /></a></li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />  </li><li>\n      <a href=\"/2010/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/browse_a.gif\" alt=\"Browse Archive\" width=\"117\" height=\"27\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/browse_b.gif\" /></a></li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />  </li><li>\n      <a href=\"/careers/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/careers_a.gif\" alt=\"Careers\" width=\"62\" height=\"27\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/careers_b.gif\" /></a> </li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />  </li><li>\n      <a href=\"/webextra/\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/video_a.gif\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/video_b.gif\" alt=\"Video & Multimedia\" width=\"141\" height=\"27\" /></a></li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" />\n      </li><li>\n       <a href=\"/strutsActions/registration/subscribeRedirect\"><img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/subscribe_a.gif\" class=\"domroll http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/subscribe_b.gif\" alt=\"Subscribe\" /></a> </li>\n      <li> <img src=\"http://images.the-scientist.com/graphics/interface/toptoolbar/buttons/topnav_divider.gif\" width=\"5\" height=\"27\" /></li>\n       </ul>\n      \n    <!-- Close Top Nav -->\n  </div>\n  <!-- Close Logo & Nav Header -->\n  <br class=\"clearfloat\" />\n</div>\n\n\n\n\n\n\n\n\n\n\n                                    \n\n\n<! cache this !>\n<!-- Body Wrapper -->\n\n<div id=\"homeBodyWrapper\">\n\n<!-- Left Nav -->\n<div id=\"leftNavWrapper\">\n<!--current thescientist cover-->\n  <div id=\"coverImg\"> <a href=\"/toc/2010/2/\"><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/issues/2010/2.jpg\" alt=\"Front Cover\" border=\"1\" height=\"175\" width=\"150\"/></a> </div>\n<!--PremiumButton-->\n  <div class=\"leftCalloutWrapper\" style=\"margin-bottom: 1px\">\n\n	<div  align=\"center\"  style=\"background-color:#FFFFFF; border-left:none; border-right:none; border-bottom:1px; border-top:1px;   border-top-style:solid;border-bottom-style:solid; border-top-color:#CCCCCC;border-bottom-color:#CCCCCC;width:150px;height:175px; vertical-align:middle; text-align:left     font-family:Verdana, Arial, Helvetica, sans-serif; font-size:9px;\" >\n	  <div align=\"center\"><span style=\"color: #CCCCCC;\">Advertisement</span><br/>\n	    <script type=\"text/javascript\">\n		  GA_googleFillSlot(\"PremiumButton\");\n		</script>\n	  </div>\n	</div>\n  </div>\n\n  <!--current supplement cover-->\n  <div id=\"coverImg2\" style=\"border: 1px solid black; float: left;\"> <a href=\"/supplements/china/toc.jsp\"><img src=\"http://images.the-scientist.com/supplements/china/cover2.jpg\" alt=\"Life Sciences in China\" border=\"0\" height=\"175\" width=\"150\"/></a> </div>\n\n<!-- supplements-->\n   <div class=\"leftCalloutWrapper\">\n    <div class=\"leftNavLinks\">\n      <div class=\"leftCalloutTop\"></div>\n      <div class=\"leftNavTitle\"><a href=\"http://www.the-scientist.com/supplements\">Supplements</a></div>\n      <ul>\n      <li>\n       <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/nrw\">NRW: Biotechnology in North Rhine-Westphalia</a></li>\n\n      	<li>\n       <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/supplement/2008-7-1/\">Life Sciences in <br/>Ireland</a></li>\n</li>\n        <li>\n        <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/supplement/2007-12-1/\">Schizophrenia</a></li>\n        <li>\n        <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/supplement/2007-5-1/\">Autoimmunity</a></li>\n      </ul>\n    </div>\n      <br class=\"clearfloat\" />\n    <div class=\"leftCalloutBottom\"></div>\n    <br class=\"clearfloat\" />\n  </div>\n<!-- supplements end-->\n\n    <div class=\"leftCalloutWrapper\">\n    <div class=\"leftNavLinks\">\n      <div class=\"leftCalloutTop\"></div>\n      <div class=\"leftNavTitle\">Survey Series</div>\n      <ul>\n\n\n         <li>\n       <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n       <strong><a href=\"/bptw/\">Best Places to Work</a></strong></li>\n        <li>\n        <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <strong><a href=\"/salarysurvey/\">$alary $urvey</a></strong></li>\n   	<li>\n        <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/videoawards\"><strong>The Scientist Video Awards<br /></strong></a></li>\n   		<li>\n        <img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" />\n        <a href=\"http://www.the-scientist.com/winners/index/\"><strong>Lab Web Site and<br />\n        Video Awards </strong></a></li>\n      </ul>\n    </div>\n    <div class=\"leftCalloutBottom\"></div>\n    <br class=\"clearfloat\" />\n  </div>\n\n  <div class=\"leftCalloutWrapper\">\n    <div class=\"leftNavLinks\">\n      <div class=\"leftCalloutTop\"></div>\n      <div style=\"margin-left: 11px;\"><a href=\"http://www.the-scientist.com/register/\"><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_daily1.jpg\" border=\"0\" /></a>      </div>\n      <div class=\"leftNavTitle\">The Scientist Daily</div>\n      <ul>\n       <li style=\"margin:0;padding:0;\"><a href=\"http://www.the-scientist.com/register/\">Science headlines delivered daily. <br />\n        Register today.</a></li>\n\n      </ul>\n    </div>\n    <div class=\"leftCalloutBottom\"></div>\n    <br class=\"clearfloat\" />\n  </div>\n<!--\n<div class=\"leftCalloutWrapper\" style=\"margin-bottom: 1px\">\n<a href=\"http://www.the-scientist.com/scienceconnection/\"><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/scgraphic2.gif\" border=\"0\" class=\"domroll http://images.the-scientist.com/graphics/interface/lefttoolbar/scgraphic2_white.gif\"/></a>\n</div>\n-->\n  <div class=\"leftCalloutWrapper\">\n    <div class=\"leftNavLinks\">\n      <div class=\"leftCalloutTop\"></div>\n      <div class=\"leftNavTitle\">Institutions</div>\n      <ul>\n        <li><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" /><a href=\"/fragments/libraries/\">For Librarians</a></li>\n        <li><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" /><a href=\"/fragments/libraries/recommend.jsp\">Recommend Us to Your Librarian</a></li>\n      </ul>\n    </div>\n    <div class=\"leftCalloutBottom\"></div>\n    <br class=\"clearfloat\" />\n  </div>\n\n\n\n\n  <div class=\"leftCalloutWrapper\">\n    <div class=\"leftNavLinks\">\n      <div class=\"leftCalloutTop\"></div>\n      <div class=\"leftNavTitle\">For Advertisers</div>\n      <ul>\n        <li><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" /><a href=\"/about/advertising/\">Advertise with Us</a></li>\n        <li><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" /><a href=\"/about/advertising/adsales/\">Contact Ad Team</a></li>\n        <li><img src=\"http://images.the-scientist.com/graphics/interface/lefttoolbar/left_callout_bullet.gif\" /><a href=\"http://www.the-scientist.com/mediakit/\">2010 Media Kit</a></li>\n      </ul>\n    </div>\n    <div class=\"leftCalloutBottom\"></div>\n    <br class=\"clearfloat\" />\n  </div>\n  <!--Close Left Nav-->\n  <br class=\"clearfloat\" />\n</div>\n\n\n<! cache this !>\n\n\n\n\n\n\n\n\n\n\n            \n    \n    \n        Error page error description 404       \n        \n        <br />\n        <br />\n        <br />\n        Last cached Mon Feb 08 21:21:43 EST 2010\n        \n        \n\n    \n    \n    \n\n\n\n                                   <!--         </td>\n\n                                        </tr>\n\n                                    </table>\n\n\n\n                                </td>  -->\n\n\n\n\n\n                                \n\n\n\n             	\n\n\n\n                                    \n\n\n\n	\n\n\n\n\n\n <div class=\"skyscraper\">\n\n    <div align=\"right\">\n\n\n\n<!------ AD \'Right1\' begin ------>\n\n\n\n<script type=\"text/javascript\">\n\n  GA_googleFillSlot(\"RightSkyscraper\");\n\n</script>\n\n<br/><br/>\n\n<!------ AD \'Right1\' end ------>\n\n<script type=\"text/javascript\"><!--\n\ngoogle_ad_client = \"pub-3798189751150834\";\n\n/* TheScientist_skyscraper_wide160x600 */\n\ngoogle_ad_slot = \"9187285935\";\n\ngoogle_ad_width = 160;\n\ngoogle_ad_height = 600;\n\n//-->\n\n</script>\n\n\n\n\n\n<script type=\"text/javascript\"\n\nsrc=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n\n</script>\n\n\n\n\n\n</div>\n\n  </div>\n\n\n\n				\n\n\n\n                                \n\n\n\n\n\n\n\n\n\n\n\n\n\n     	\n\n\n\n            \n\n\n\n\n\n\n  <div id=\"footer\"><a href=\"/about/index/\">About TS</a> | <a href=\"/about/themagazine/contact/\">Contact</a> | <a href=\"/about/advertising/\">Advertise</a> | <a href=\"/about/themagazine/editorialboard/\">Editorial Advisory Board</a> | <a href=\"/privacy/\">Privacy Policy</a>\n\n    <br />\n    &copy; 1986-2010 <i>The Scientist</i><br />\n  </div>\n<!-- Close Wrapper -->\n</div>\n\n\n</div>\n\n<!-- 468x60 Banner Ad -->\n<div id=\"adbanner1\">\n\n<script type=\"text/javascript\">\n  GA_googleFillSlot(\"bottomBanner\");\n</script>\n\n  <!-- Close 468x60 Banner Ad -->\n</div>\n<script src=\"/js/chrisdomroll.js\" language=\"javascript\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">\nvar gaJsHost = ((\"https:\" == document.location.protocol) ?\n\"https://ssl.\" : \"http://www.\");\ndocument.write(unescape(\"%3Cscript src=\'\" + gaJsHost +\n\"google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E\"));\n</script>\n<script type=\"text/javascript\">\nvar pageTracker = _gat._getTracker(\"UA-1151369-1\");\npageTracker._initData();\npageTracker._trackPageview();\n</script>\n</body>\n</html>\n\n\n\n\n\n		\n\n\n\n\n\n\n\n";

} // end with block
