//Updated by Dave Thomas on 29th April 2010


//Write top menu bar


function writeHeader()

{

//Script to write the two bars at the top of the page
//Last modified on 29th April 2007 by Dave Thomas

var title=document.title


document.writeln('<div id="nav-menu">');
document.writeln('<ul>');
document.writeln('<li><a href="index.html">Home</a></li>'); 
document.writeln('<li><a href="forums.html">Forums</a></li>');
document.writeln('<li><a href="highpeak.html">High Peak Volunteering</a></li>');
document.writeln('<li><a href="sport.html">Sport Outreach Volunteering</a></li>');
document.writeln('<li><a href="training.html">Training</a></li>');
document.writeln('<li><a href="u16.html">Volunteering for 11–16s</a></li>');
document.writeln('<li><a href="vpages.html">vinvolved</a></li>');
document.writeln('<li><a href="news.html">News</a></li>');
document.writeln('</ul>');
document.writeln('</div>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('<tr>');
document.writeln('<td bgcolor="#666699" valign="top">');


document.writeln('<p class="menuhead">Links To Volunteer Centres<p>');
document.writeln('<div id="vc-menu">');
document.writeln('<ul>');
document.writeln('<li><a href="http://www.ambervalleycvs.org.uk/volunteering.htm" target="_blank">Amber Valley</a>');
document.writeln('<li><a href="http://www.bolsovercvp.org.uk/volunteering/index.htm target="_blank">Bolsover</a>');
document.writeln('<li><a href="http://WWW.buxtonvc.org.uk/" target="_blank">Buxton</a>');
document.writeln('<li><a href="http://www.volunteercentre.webeden.co.uk/" target="_blank">Chesterfield</a>');
document.writeln('<li><a href="http://www.volunteeringderby.co.uk/" target="_blank">Derby</a>');
document.writeln('<li><a href="http://www.vcdd.org.uk/" target="_blank">Derbyshire Dales</a>');
document.writeln('<li><a href="http://www.erewashvoluntaryaction.org.uk/" target="_blank">Erewash</a>');
document.writeln('<li><a href="http://www.vcglossop.org.uk/" target="_blank">Glossop</a>');
document.writeln('<li><a href="http://www.sdcvs.org.uk/volunteering/index.html" target="_blank">South Derbyshire </a>');
document.writeln('</ul>');
document.writeln('</div>');

document.writeln('</td>');
document.writeln('<td valign="top">');

}


//Write bottom menu with Vol Centres Links


function writeBottom ()

{

document.writeln('</td>');
document.writeln('</tr>');
document.writeln('<tr>');
document.writeln('<td bgcolor="#666699">');
document.writeln('</td>');
document.writeln('<td bgcolor="#FF9900">');
document.writeln('<p>&nbsp;</p>');


}



//Page Last Updated insert

function updated()

{

var da = new Date(document.lastModified); // Create a Date Object set to the last modifed date 
var db = da.toGMTString(); // Convert to a String in UK format
var dc = db.split(" "); // Split the string on spaces 

if ( eval( dc[3] ) < 1970 ) dc[3] = eval( dc[3] ) +100; // Correct any date purporting to be before 1970 

db = dc[1] + " " + dc[2] + " " + dc[3]; // Ignore day of week and combine date, month and year

document.write ('<p class="footer">Funded by Derbyshire Childrens Trust</p>'); 

document.write ('<p class="footer">Page Last Updated ' + db + ' by <a href="mailto:davet@sdcvs.org.uk">Webmaster</a></p>'); // Display the result 

}

