// JavaScript Document


/********************************************
	Start of calendar functions
*/

function goLastMonth(month, year)
{
// If the month is Januaru, decrement the year
if(month == 1)
{
--year;
month = 13;
}

document.location.href = '/'+(month-1)+'/'+year+'/diary_dates.htm';
} 


function goNextMonth(month, year)
{
// If the month is December, increment the year
if(month == 12)
{
++year;
month = 0;
}

document.location.href = '/'+(month+1)+'/'+year+'/diary_dates.htm';
}


/********************************************
	End of calendar functions
*/

// JavaScript Document

function addbookmark()
{
bookmarkurl="http://www.lowerdraytonfarm.co.uk"
bookmarktitle="Lower Drayton Farm"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}



