
function fix(){
	var splash1 = document.getElementById('splash1');
	var splash2 = document.getElementById('splash2');
	var image = document.getElementById('dimage');
	
	
	
	splash2.style.top = 177 + image.offsetHeight +'px';
	splash2.style.marginLeft = image.offsetWidth - 100 +'px';
	splash2.style.display='block';
}

function show_contact(county){
	var url = "select_contact.php?bustcache="+new Date().getTime()+"&county="+county;
	
	ajax_req("GET",url,"contact_done");
		
}

function contact_done(){
	var d = document.getElementById('contact_popup');
	
	if (ajax.readyState == 4){
		var result = ajax.responseText;
		if (result=='*|*') 
			result='This county doesn\'t have a BBBS centre, please conatct our BBBS HQ in Galway for advise at <a href="mailto:katherine.cameron@foroige.ie">katherine.cameron@foroige.ie</a>  or phone: 091 554420';
		else {
			result=result.split('*|*');
			if (result[1]!='') result[1]='<a href="mailto:'+result[1]+'">'+result[1]+'</a>';
			if (result[2]!='') result[2]='<img style="display:block;margin:0 auto;" src="uplds/t-'+result[2]+'"><br>'
			//result = result[0]+'<br>E: '+result[1];
			result = result[2]+result[0];
		}
		
		d.innerHTML ="<a href=\"#\" style=\"width:145px;display:block;float:right;margin:-5px -10px 0 0;\" onclick=\"document.getElementById('contact_popup').style.display='none';\"><img src=\"images/close_popup.jpg\" border=0></a><br clear=\"right\">" + result;
		
		d.style.display = "block";
	}
}
