// jason@trinitydesign.co.uk

function showhide(id){
	if(document.getElementById(id).style.display == 'block'){
		document.getElementById(id).style.display='none';	
	}else{
		document.getElementById(id).style.display='block';
	}
}

function hide(id){
	document.getElementById(id).style.display = 'none';	
}

function popup(url,width,height){
	window.open(url,'Fabfixpopup',"width="+width+",height="+height+",left=20,top=20,scrollbars=yes,menubar=no, resizable=yes,location=no,toolbar=no");
}

function clearbg(id){
	document.getElementById(id).style.background='#ffffff';	
}

function comphide(){
if (document.getElementById('Enquirer').value == "homeowner"){document.getElementById('company').style.display = 'none';}else{document.getElementById('company').style.display = 'block';}
}
