function nospam(url,a){
	window.location='mailto:'+a+'@'+url+'?subject=enquiry from web site';	
}

function news_manoeuvre(){

	var news=$.className('news');

	for(var i=0;i<news.length;i++)
		{
		var c=DomUtils.getAnyAttribute(news[i],'class');
		if(c.indexOf('quick')==-1)
			{
			var content=news[i].innerHTML
			var pos=content.indexOf('</h2>');

			if(pos==-1)
				var pos=content.indexOf('</H2>');

			var start=content.substring(0,pos+5);
			var end=content.substring(pos+6);
			
			end='<div class="column">'+end+'</div>';
			
			content=start+end;
	
			news[i].innerHTML=content;
			}
		}

}

function init(){

	var v=DomUtils.getViewXY();

	var html=document.getElementsByTagName('HTML')[0];

	if(v.y>html.offsetHeight)
		html.style.height='100%';
	
	news_manoeuvre();
}