function contact(){
	document.write('<embed src="swf/contact.swf" quality=high type="application/x-shockwave-flash" width="725" height="165" scale="noborder" wmode="transparent"> </embed>');
}

function DisplayCurrentNewsItem() {
//    callajax("newsholder","news.aspx");
}

function callajax(name,params){
AjaxRequest.get(
 	{
    	'url':params
    	,'onSuccess':function(req){
    		var name = this.groupName;
			document.getElementById(name).innerHTML = req.responseText;
		}
    	,'timeout':15000
	,'groupName':name		
  	}
	);
return false;
}