function NormNews() {
var nnews=new Array(3);
	nnews[0]='<span style="font-size:10pt; font-family:'+fontfam+'; color:'+colour1+';"><a name="1307"></a>23rd June 2010<br /><a target="_blank" style="font-size:10pt; font-family:arial,helvteica,sans-serif; color:'+colour1+'" href="http://www.norm-uk.org/news.html?action=showitem&amp;item=1307">NORM-UK Trustee response to Independent article</a><br /><br /></span>';
	nnews[1]='<span style="font-size:10pt; font-family:'+fontfam+'; color:'+colour1+';"><a name="1306"></a>30th May 2010<br /><a target="_blank" style="font-size:10pt; font-family:arial,helvteica,sans-serif; color:'+colour1+'" href="http://www.norm-uk.org/news.html?action=showitem&amp;item=1306">Dutch Medical Association takes a stand against forced male circumcision</a><br /><br /></span>';
	nnews[2]='<span style="font-size:10pt; font-family:'+fontfam+'; color:'+colour1+';"><a name="1305"></a>30th May 2010<br /><a target="_blank" style="font-size:10pt; font-family:arial,helvteica,sans-serif; color:'+colour1+'" href="http://www.norm-uk.org/news.html?action=showitem&amp;item=1305">As AAP withdraws proposal that girls be cut, Australasian gynaecologists reveal they could support  incising  the clitoris</a><br /><br /></span>';
	return nnews;
}

function NormQuote() {
var nquote='"If only we had been given the chance to agree or disagree with the irreversable \'whims\' of the medical profession"';
	return nquote;
}

function openTable() {
	document.write('<table width="'+tablewidth+'" border="0" cellspacing="0" cellpadding="5">');
	document.write('<tr><td width="100%">');
	document.write('</td></tr>');
}

function closeTable() {
	document.write('<tr><td bgcolor="'+colour1+'" align=center width="100%">');
	document.write('<a  target="_blank" style="font-size:14pt; font-weight:bold; font-family:'+fontfam+'; color:'+colour2+';" href="http://www.norm-uk.org/">NORM-UK</a>');
	//document.write('<br /><a style="font-size:14pt; font-family:'+fontfam+'; color:'+colour2+';" href="http://www.norm-uk.org/donateonline">Make a Donation</a>');
	document.write('<br /><span style="font-size:8pt; font-family:'+fontfam+'; color:'+colour2+';">UK Registered Charity No. 1072831</span>');
	document.write('</td></tr>');
	document.write('</table>');
}

function writeNews() {
	var i=0;
	var nnews=NormNews();
	openTable();
	document.write('<tr><td bgcolor="'+colour2+'" width="100%">');
	for (i=0; i<nnews.length; i++) {
		document.write(nnews[i]);
	}
	document.write('</td></tr>');
	closeTable();
}

function writeQuote() {
	var nquote=NormQuote();
	openTable();
	document.write('<tr><td bgcolor="'+colour2+'" width="100%">');
	document.write('<a href="http://www.norm-uk.org" target="_blank" style="font-family:'+fontfam+'; color:'+colour1+'; font-style:italic; font-size:10pt; font-weight:normal; text-decoration:none;">'+nquote+'</a>')
	document.write('</td></tr>');
	closeTable();
	
}