Lead #1133

Company
Steina Physiotherapy
Website
http://steinaphysioclinic.co.uk
Best Contact
Email
()

Override

Captured Pages

Emails:
View text
let two_font_actions = "not_load"; let two_css_length=0;let two_connected_css_length=0;let two_uncritical_fonts=null;let two_uncritical_fonts_status=false;if(two_font_actions=="not_load"||two_font_actions=="exclude_uncritical_fonts"){two_uncritical_fonts_status=true;} self.addEventListener("message",function(e){two_css_length=e.data.css.length;if(!e.data.critical_data.critical_css||!e.data.critical_data.critical_fonts){two_uncritical_fonts_status=false;} if(e.data.font.length>0){two_fetch_inbg(e.data.font,"font");} if(e.data.js.length>0){two_fetch_inbg(e.data.js,"js");} if(e.data.excluded_js.length>0){two_fetch_inbg(e.data.excluded_js,"js",true);} if(e.data.css.length>0){two_fetch_inbg(e.data.css,"css");}},false);function two_fetch_inbg(data,type,excluded_js=false){for(let i in data){if(typeof data[i].url!="undefined"){var modifiedScript=null;if(type==="js"&&typeof data[i].exclude_blob!="undefined"&&data[i].exclude_blob){modifiedScript={id:i,status:'ok',type:type,url:data[i].url,uid:data[i].uid};two_send_worker_data(modifiedScript);continue;} fetch(data[i].url,{mode:'no-cors',redirect:'follow'}).then((r)=>{if(!r.ok||r.status!==200){throw Error(r.statusText);} if(two_uncritical_fonts_status&&type=="css"){return(r.text());}else{return(r.blob());}}).then((content_)=>{let sheetURL="";if(two_uncritical_fonts_status&&type=="css"){sheetURL=two_create_blob(content_);}else{sheetURL=URL.createObjectURL(content_);} modifiedScript=null;if(type=="css"){modifiedScript={id:i,type:type,status:'ok',media:data[i].media,url:sheetURL,uid:data[i].uid,original_url:data[i].url,two_uncritical_fonts:two_uncritical_fonts,};}else if(type=="js"){modifiedScript={id:i,status:'ok',type:type,url:sheetURL,uid:data[i].uid};}else if(type=="font"){modifiedScript={status:'ok',type:type,main_url:data[i].url,url:sheetURL,font_face:data[i].font_face};} if(excluded_js){modifiedScript.excluded_from_delay=true;} two_send_worker_data(modifiedScript);}).catch(function(error){console.log("error in fetching: "+error.toString()+", bypassing "+data[i].url);fetch(data[i].url,{redirect:'follow'}).then((r)=>{if(!r.ok||r.status!==200){throw Error(r.statusText);} if(two_uncritical_fonts_status&&type=="css"){return(r.text());}else{return(r.blob());}}).then((content_)=>{let sheetURL="";if(two_uncritical_fonts_status&&type=="css"){sheetURL=two_create_blob(content_);}else{sheetURL=URL.createObjectURL(content_);} var modifiedScript=null;if(type=="css"){modifiedScript={id:i,type:type,status:'ok',media:data[i].media,url:sheetURL,uid:data[i].uid,original_url:data[i].url,two_uncritical_fonts:two_uncritical_fonts,};}else if(type=="js"){modifiedScript={id:i,status:'ok',type:type,url:sheetURL,uid:data[i].uid};}else if(type=="font"){modifiedScript={status:'ok',type:type,main_url:data[i].url,url:sheetURL,font_face:data[i].font_face};} if(excluded_js){modifiedScript.excluded_from_delay=true;} two_send_worker_data(modifiedScript);}).catch(function(error){console.log("error in fetching no-cors: "+error.toString()+", bypassing "+data[i].url);try{console.log("error in fetching: "+error.toString()+", sending XMLHttpRequest"+data[i].url);let r=new XMLHttpRequest;if(two_uncritical_fonts_status&&type=="css"){r.responseType="text";}else{r.responseType="blob";} r.onload=function(content_){let sheetURL="";if(two_uncritical_fonts_status&&type=="css"){sheetURL=two_create_blob(content_.target.response);}else{sheetURL=URL.createObjectURL(content_.target.response);} if(r.status!==200){two_XMLHttpRequest_error(excluded_js,data[i],type,i);return;} console.log("error in fetching: "+error.toString()+", XMLHttpRequest success "+data[i].url);let modifiedScript=null;if(type=="css"){modifiedScript={id:i,type:type,status:'ok',media:data[i].media,url:sheetURL,uid:data[i].uid,two_uncritical_fonts:two_uncritical_fonts,};}else if(type=="js"){modifiedScript={id:i,type:type,status:'ok',url:sheetURL,uid:data[i].uid};}else if(type=="font"){modifiedScript={type:type,status:'ok',main_url:data[i].url,url:sheetURL,font_face:data[i].font_face};} if(excluded_js){modifiedScript.excluded_from_delay=true;} two_send_worker_data(modifiedScript);};r.onerror=function(){two_XMLHttpRequest_error(excluded_js,data[i],type,i)};r.open("GET",data[i].url,true);r.send();}catch(e){console.log("error in fetching: "+e.toString()+", running fallback for "+data[i].url);var modifiedScript=null;if(type=="css"||type=="js"){modifiedScript={id:i,type:type,status:'error',url:data[i].url,uid:data[i].uid};}else if(type=="font"){modifiedScript={type:type,status:'error',url:data[i].url,font_face:data[i].font_face};} if(excluded_js){modifiedScript.excluded_from_delay=true;} two_send_worker_data(modifiedScript);}});});}}} function two_XMLHttpRequest_error(excluded_js,data_i,type,i){console.log("error in fetching: XMLHttpRequest failed "+data_i.url);var modifiedScript=null;if(type=="css"||type=="js"){modifiedScript={id:i,type:type,status:'error',url:data_i.url,uid:data_i.uid};}else if(type=="font"){modifiedScript={type:type,status:'error',url:data_i.url,font_face:data_i.font_face};} if(excluded_js){modifiedScript.excluded_from_delay=true;} two_send_worker_data(modifiedScript);} function two_create_blob(str){two_uncritical_fonts="";const regex=/@font-face\s*\{(?:[^{}])*\}/sig;str=str.replace(regex,function(e){if(e.includes("data:application")){return e;} two_uncritical_fonts+=e;return"";});let blob_data=new Blob([str],{type:"text/css"});let sheetURL=URL.createObjectURL(blob_data);return sheetURL;} function two_send_worker_data(data){if(data.type=="css"){two_connected_css_length++;data.length=two_css_length;data.connected_length=two_connected_css_length;} self.postMessage(data)} let two_font_actions = "not_load"; two_worker_styles_list=[];two_worker_styles_count=0;var two_script_list=typeof two_worker_data_js==="undefined"?[]:two_worker_data_js.js;var two_excluded_js_list=typeof two_worker_data_excluded_js==="undefined"?[]:two_worker_data_excluded_js.js;var excluded_count=two_excluded_js_list.filter((el)=>{return!!el['url']}).length;var two_css_list=typeof two_worker_data_css==="undefined"?[]:two_worker_data_css.css;var two_fonts_list=typeof two_worker_data_font==="undefined"?[]:two_worker_data_font.font;var two_critical_data=typeof two_worker_data_critical_data==="undefined"?[]:two_worker_data_critical_data.critical_data;var wcode=new Blob([document.querySelector("#two_worker").textContent],{type:"text/javascript"});var two_worker=new Worker(window.URL.createObjectURL(wcode));var two_worker_data={"js":two_script_list,"excluded_js":two_excluded_js_list,"css":two_css_list,"font":two_fonts_list,critical_data:two_critical_data} two_worker.postMessage(two_worker_data);two_worker.addEventListener("message",function(e){var data=e.data;if(data.type==="css"&&data.status==="ok"){if(data.two_uncritical_fonts&&two_font_actions=="exclude_uncritical_fonts"){let two_uncritical_fonts=data.two_uncritical_fonts;const two_font_tag=document.createElement("style");two_font_tag.innerHTML=two_uncritical_fonts;two_font_tag.className="two_uncritical_fonts";document.body.appendChild(two_font_tag);} if(window.two_page_loaded){two_connect_style(data);}else{two_worker_styles_list.push(data);}}else if(data.type==="js"){if(data.status==="ok"){if(data.excluded_from_delay){two_excluded_js_list[data.id].old_url=two_excluded_js_list[data.id].url;two_excluded_js_list[data.id].url=data.url;two_excluded_js_list[data.id].success=true;excluded_count--;if(excluded_count===0){two_connect_script(0,two_excluded_js_list)}}else{two_script_list[data.id].old_url=two_script_list[data.id].url;two_script_list[data.id].url=data.url;two_script_list[data.id].success=true;}}}else if(data.type==="css"&&data.status==="error"){console.log("error in fetching, connecting style now") two_connect_failed_style(data);}else if(data.type==="font"){two_connect_font(data);}});function UpdateQueryString(key,value,url){if(!url)url=window.location.href;var re=new RegExp("([?&])"+key+"=.*?(&|#|$)(.*)","gi"),hash;if(re.test(url)){if(typeof value!=="undefined"&&value!==null){return url.replace(re,"$1"+key+"="+value+"$2$3");} else{hash=url.split("#");url=hash[0].replace(re,"$1$3").replace(/(&|\?)$/,"");if(typeof hash[1]!=="undefined"&&hash[1]!==null){url+="#"+hash[1];} return url;}} else{if(typeof value!=="undefined"&&value!==null){var separator=url.indexOf("?")!==-1?"&":"?";hash=url.split("#");url=hash[0]+separator+key+"="+value;if(typeof hash[1]!=="undefined"&&hash[1]!==null){url+="#"+hash[1];} return url;} else{return url;}}} function two_connect_failed_style(data){var link=document.createElement("link");link.className="fallback_two_worker";link.rel="stylesheet";link.type="text/css";link.href=data.url;link.media="none";link.onload=function(){if(this.media==="none"){if(data.media){this.media=data.media;}else{this.media="all";}console.log(data.media);}if(data.connected_length==data.length&&typeof two_replace_backgrounds!="undefined"){two_replace_backgrounds();};two_styles_loaded()};document.getElementsByTagName("head")[0].appendChild(link);if(data.connected_length==data.length&&typeof two_replace_backgrounds!="undefined"){two_replace_backgrounds();}} function two_connect_style(data,fixed_google_font=false){if(fixed_google_font===false&&typeof two_merge_google_fonts!=="undefined"&&data['original_url']&&data['original_url'].startsWith('https://fonts.googleapis.com/css')&&data['response']){data['response'].text().then(function(content){content=two_merge_google_fonts(content) let blob=new Blob([content],{type:data['response'].type});data['url']=URL.createObjectURL(blob);two_connect_style(data,true);});return;} var link=document.createElement("link");link.className="loaded_two_worker";link.rel="stylesheet";link.type="text/css";link.href=data.url;link.media=data.media;link.onload=function(){if(data.connected_length==data.length&&typeof two_replace_backgrounds!="undefined"){two_replace_backgrounds();};two_styles_loaded()};link.onerror=function(){two_styles_loaded()};document.getElementsByTagName("head")[0].appendChild(link);} var two_event;function two_connect_script(i,scripts_list=null){if(i===0&&event){two_event=event;event.preventDefault();} if(scripts_list===null){scripts_list=two_script_list;} if(typeof scripts_list[i]!=="undefined"){let data_uid="[data-two_delay_id=\""+scripts_list[i].uid+"\"]";let current_script=document.querySelector(data_uid);let script=document.createElement("script");script.type="text/javascript";script.async=false;if(scripts_list[i].inline){var js_code=decodeURIComponent(atob(scripts_list[i].code));var blob=new Blob([js_code],{type:"text/javascript"});scripts_list[i].url=URL.createObjectURL(blob);} if(current_script!=null&&typeof scripts_list[i].url!="undefined"){script.dataset.src=scripts_list[i].url;current_script.parentNode.insertBefore(script,current_script);current_script.getAttributeNames().map(function(name){let value=current_script.getAttribute(name);try{script.setAttribute(name,value);}catch(error){console.log(error);}});current_script.remove();script.classList.add("loaded_two_worker_js");if(typeof scripts_list[i].exclude_blob!="undefined"&&scripts_list[i].exclude_blob){script.dataset.blob_exclude="1";}} i++;two_connect_script(i,scripts_list);}else{document.querySelectorAll(".loaded_two_worker_js").forEach((elem)=>{let data_src=elem.dataset.src;if(elem.dataset.blob_exclude==="1"){delete elem.dataset.blob_exclude;delete elem.dataset.src;delete elem.dataset.two_delay_id;delete elem.dataset.two_delay_src;} if(data_src){elem.setAttribute("src",data_src);}});}} function two_connect_font(data){let font_face=data.font_face;if(font_face.indexOf("font-display")>=0){const regex=/font-display:[ ]*[a-z]*[A-Z]*;/g;while((m=regex.exec(font_face))!==null){if(m.index===regex.lastIndex){regex.lastIndex++;} m.forEach((match,groupIndex)=>{console.log(match);font_face.replace(match,"font-display: swap;");});}}else{font_face=font_face.replace("}",";font-display: swap;}");} if(typeof data.main_url!="undefined"){font_face=font_face.replace(data.main_url,data.url);} var newStyle=document.createElement("style");newStyle.className="two_critical_font";newStyle.appendChild(document.createTextNode(font_face));document.head.appendChild(newStyle);} let connect_stile_timeout=setInterval(function(){console.log(window.two_page_loaded);if(window.two_page_loaded){clearInterval(connect_stile_timeout);two_worker_styles_list.forEach(function(item,index){two_connect_style(item);});two_worker_styles_list=[];}},500);function two_styles_loaded(){if(two_css_list.length-++two_worker_styles_count==0){var critical_css=document.getElementById("two_critical_css");if(critical_css){critical_css.remove();} onStylesLoadEvent=new Event("two_css_loaded");window.dispatchEvent(onStylesLoadEvent);}} Skip to content 07834 789 257 [email protected] HomeServices All Services What we treat…. Remote Sessions/Covid19 About About us Our Therapist Elaine McBride PricingBlogContactToggle website search Menu Close Physiotherapy In Liverpool Get The Ultimate Healing You Deserve Here at Steina Physiotherapy our Chartered Physiotherapists are experts in treating Musculoskeletal pain and dysfunction. We aim to give you the tools and knowledge to make you feel better and help you understand any underlying causes. We also want to give you preventative strategies so that you are empowered and know what you can do yourself. Contact Us View Services About Us Steina Physiotherapy began a journey in 1989 and has provided thousands of treatments to Patients from Maghull and the surrounding areas. Our Physiotherapists are fully registered with the Chartered Society of Physiotherapy. Read more What We Do Our Services We provide top notch Physiotherapy services in Liverpool. Our services include: Acupuncture, Pilates, Yoga and many more… Read more What We Treat Steina Physiotherapy we offer treatment of various kinds of body pain such as; Neck & Back Problems, Joint Pains, Repetitive Injury/Overuse and more.. Read more Remote Sessions Due to the current situation with Covid-19 it is understandable that Patients may not want to come and have face to face sessions. Read more HPCP & CSP Accredited Steina Physiotherapy is registered and accredited by Health Professional Association as well as a member of Chartered Society Of Physiotherapy 5 Star average rating  5/5 Here’s What Our Customers Think The Angel!At 11.00am this morning, I was in severe pain and alone. My GP surgery I really could not describe as helpful. I telephoned for advice, I know times are difficult and Covid-19 perhaps takes priority!! With this in mind I had to put my thinking cap on and braved making a phone call to Steina Physiotherapy who I had used in the past. A very pleasant person (Elaine) answered the phone, I hesitantly asked were home visits possible, to be told yes they were. I was oh so lucky!!! At approx 2.45pm “The Angel” arrived. A very pleasant, approachable and efficient physio. She worked on my knee and got me mobile and free from the excruciating pain that I was suffering and also enquired if any other issues were troubling me. These she addressed as well. It is obvious from my comments, that I was totally delighted with my experience today. Thank you ElaineErica Johnson Local Patient SuperI have a sitting job and Elaine has provided me with with lots of ergonomic desk advice and ways of improving my posture. She has taught me an array of Pilates exercises to help improve my core strength. I feel super motivated and looking forward to positive progress 🙂LynzT-1 Local Patient LegendI have been getting treatment from elaine for many years for all sorts of ailments! I have literally followed her wherever she has gone and wouldnt go to anyone else! Shes genuine, down to earth and takes no prisoners!!!JoW-430 Local Patient {"@context": "http://schema.org","@type": "Product","name": "What Our Customers Saying","aggregateRating": {"@type": "AggregateRating","bestRating": "5","ratingValue": "5","worstRating": "1","reviewCount": "3"},"review": []} Featured Blog Post Pilates steinaphysioclinic | April 12, 2019 | Services | No Comments The body likes movement and the mind likes stillness. The link between emotions and the physical body is well known in traditions such as Chinese medicine. When we can cultivate time to help our bodies then healing can take place. Yoga and Pilates are made for just this. I offer one to one sessions and/or … Reach New Heights steinaphysioclinic | April 4, 2019 | Blog | No Comments Physiotherapist taught Pilates is excellent for rehabilitation of the body with pain or injury. To establish more mind/body connection is key to optimum body health. Being led in Pilates one to one is such a treat for the body/mind. To be guided safely into postures with your breath will bring you well on your way … New Heights, Yoga and Pilates The benefits of walking steinaphysioclinic | February 20, 2019 | Blog | No Comments The spine is in it’s best position when we walk. If we think of our body in terms of stagnant and moving and consider how much time we spend being stagnant during the day, then walking is the ideal activity to counter act static postures. It will tone all the muscles the more that we … Are You Ready To Get Your Body Back In Shape? Learn from the experts to help your body get back to normal and feel brand new again! Contact Us Now Locate Us Useful PagesServices What We Treat Prices Contact About usAbout us Privacy Policy Remote Sessions Blog Privacy Policy About Pricing Contact Copyright [oceanwp_date] - Steina Physiotherapy powered by Snapyweb Home Services All Services What we treat…. Remote Sessions/Covid19 About About us Our Therapist Elaine McBride Pricing Blog Contact Toggle website search Type your search Now offering Hydrocortisone injections £150 Hydrocortisone injections are used to treat swollen or painful joints, such as after an injury or if you have arthritis. The injections usually help relieve pain and swelling, and make movement easier. The benefits can last for several months. CLOSE window["two_svg_placeholder"] = "data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20%20%22%3E%3C/svg%3E#}" if(typeof two_lazyLoadInstance === "undefined"){ window.two_lazyLoadInstance = new LazyLoad({ "callback_applied": function(element, instance){ let settings = instance._settings; var bgDataValue = element.getAttribute("data-" + settings.data_bg_multi); if (!bgDataValue) { return; } if(window.getComputedStyle(element).getPropertyValue("background-image") !== bgDataValue) { let style = element.getAttribute("style"); style += "background-image: " + bgDataValue + " !important;"; element.setAttribute("style", style); } } }); }else{ two_lazyLoadInstance.update(); } window.addEventListener("scroll", function() { if(two_lazyLoadInstance.toLoadCount>0){ two_lazyLoadInstance.update(); } }); /* * Updates lazy-load instance from every ajax request * When we use Ajax requests and get pictures back, we need to update lazy-load instance * */ if (window.jQuery) { jQuery.ajaxSetup({ complete: function() { two_lazyLoadInstance.update(); } }); }