function submitTariffForm(){
	document.property_form.submit();
}

function showAndHide(theId){ 
	var el = document.getElementById(theId) 
	if (el.style.display=="none") { 
		el.style.display="block"; //show element 
	} 
	else { 
		el.style.display="none"; //hide element 
	} 
} 
function popUp(strURL){
	newwindow=window.open(strURL,'name',"menubar=no,width=668,height=608,toolbar=no,resizable=no");
	if (window.focus) {newwindow.focus()}
}
function submitLinkForm(){
		//alert('here');
	var urllink =document.getElementById('link_id').value;	
	window.location.href= urllink;
}
function submitBookForm(){
		//alert('here');
	var urllink ='http://www.millfieldecoprojects.co.uk/bookonline.php?property_id='+document.getElementById('property_id').value;	
	//newwindow=window.open(urllink,'name',"menubar=no,width=1000,height=600,toolbar=yes,resizable=yes");
	//if (window.focus) {newwindow.focus()}
	window.location.href= urllink;
}
