/**
this script calls /store/store.asp?action=do&doaction=healthnotes
which displays the content for healthnotes based on a page or content id variable:w




<!--  BEGIN   healthnotes  -->
<SCRIPT language="JavaScript" src="/healthnotes.js" >
</SCRIPT>

<!--  END healthnotes  -->
**/

var linksArray = new Array();
//////////////////////////////////////////////////////////////////////////
//  Please edit only the values in linksArray
// for listings of content see the healthnotes documentation
healthnotesHeading = 'Click on any of the subjects below for the very latest healthnotes information. Updated regularly from journals accross the globe! ';
//linksArray["Main"] = "page=ltduk.cfm" ;
linksArray["News Wire"] = "page=newswire/index.cfm" ;
linksArray["Health Concerns"] = "ContentID=2402003" ;
linksArray["Women's Health"] = "ContentID=3991004";
linksArray["Men's Health"] ="ContentID=3990003"  ;
linksArray["Weight Control"] ="ContentID=3994007" ;
linksArray["Sport & Fitness"] ="ContentID=3993001" ;
linksArray["Safety Checker"] ="ContentID=2411003" ;
//////////////////////////////////////////////////////////////////////////
//
//  DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU'RE DOING
//
// For assistance email support@nitrosell.com
//////////////////////////////////////////////////////////////////////////
var tableBegin = '';
var tableEnd = '';
tableBegin += '<!-- BEGIN healthnotes -->  ';
tableBegin += ' <TABLE CLASS="navpanelright"  border="0">';
tableBegin += ' <TR> ';
tableBegin += '   <TD>';
tableBegin += '     <TABLE CLASS="navpanelrightheader">';
tableBegin += '     <TR>';
tableBegin += '       <TD CLASS="navpanelrightheaderleft">';
tableBegin += '       </TD>';
tableBegin += '       <TD CLASS="navpanelrightheadercenter">';
tableBegin += '         <TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%">';
tableBegin += '         <TR>';
tableBegin += '           <TD  class=navpanelrightheadercenter WIDTH="100%">';
tableBegin += '        ' + healthnotesHeading +  '   </TD>';
tableBegin += '           <TD>';
tableBegin += '           </TD>';
tableBegin += '         </TR>';
tableBegin += '         </TABLE>';
tableBegin += '       </TD>';
tableBegin += '       <TD CLASS="navpanelrightheaderright"></TD>';
tableBegin += '     </TR>';
tableBegin += '     </TABLE>';
tableBegin += '     <TABLE CLASS="navpanelrightbody">';
tableBegin += '     <TR>';
tableBegin += '       <TD CLASS="navpanelrightcontent">';
tableBegin += ' ' ;
tableEnd += '       </TD>';
tableEnd += '     </TR>';
tableEnd += '     </TABLE>  ';
tableEnd += ' </TD>';
tableEnd += ' </TR>';
tableEnd += ' </TABLE>  ';
tableEnd += ' <!-- BEGIN healthnotes --> ';


var output='';
for (i in linksArray) {
  output += '<A HREF="http://www.healthstore247.com/store/store.asp?action=do&doaction=healthnotes&'+  linksArray[i]  + '" >' + i ;
  output += '</A>';
  output += '<BR />';
}
document.write( tableBegin) ;
document.write( output ) ;
document.write( tableEnd ) ;
