function colour(id)
{
	document.getElementById(id).style.backgroundColor='#FF0000';
	
}
function colourDefault(id)
{
	document.getElementById(id).style.backgroundColor='#800000';
}

function changeColour(id)
{
	document.getElementById(id).style.color='#DC143C';
	
}
function changeColour2(id)
{
	document.getElementById(id).style.color='#2F4F4F';
}
function line(id)
{
	document.getElementById(id).style.textDecoration='underline';
	document.getElementById(id+'2').style.textDecoration='underline';
}
function noline(id)
{
	document.getElementById(id).style.textDecoration='none';
	document.getElementById(id+'2').style.textDecoration='none';
}
function aboutJes()
{
	var win;
	win=window.open("misc/aboutJes.htm","About JeSaurai","left=200, top=200, width=550, height=350, resizable=no,toolbar=no,menubar=no,directories=no,scrollbars=yes");
}
function contactEd()
{
	var win;
	win=window.open("misc/contactEd.htm","Contact Editor","left=200, top=200, width=550, height=350, resizable=no,toolbar=no,menubar=no,directories=no,scrollbars=yes");
}
function register()
{
	var win;
	win=window.open("misc/jesNewsletter.htm","Register for JeSaurai newsletter","left=200, top=200, width=550, height=350, resizable=no,toolbar=no,menubar=no,directories=no,scrollbars=yes");
}
function advertise()
{
	var win;
	win=window.open("misc/jesAd.htm","Advertise on JeSaurai","left=200, top=200, width=550, height=350, resizable=no,toolbar=no,menubar=no,directories=no,scrollbars=yes");
}
function tc()
{
	var win;
	win=window.open("misc/jesTC.htm","JeSaurai - Terms & Conditions","left=200, top=200, width=550, height=350, resizable=no,toolbar=no,menubar=no,directories=no,scrollbars=yes");
}