HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-84-generic #84-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 5 22:36:38 UTC 2025 x86_64
User: healthinsuranceukorguk (1111)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/hurlinghamclinic.co.uk/public_html/uk/index2.php
<?
$folder_location='uk';
$page_extension='.php';


class DB_Conf {	//database setup for the whole script
public static $DB_Config =  array(
  'DbConfig'    => array(
    'Hostname'  => 'localhost', 		 //database ip
    'Username'  => 'focus', 		//database user name
    'Password'  => 'follypress1', //database password
    'Database'  => 'focus', 	//database name
  )
);

 

} 

class DB_connect{
  public static function connect_db(){
  $cont = mysqli_init();
	mysqli_options($cont,MYSQLI_OPT_CONNECT_TIMEOUT, 30);
	mysqli_real_connect($cont,DB_Conf::$DB_Config['DbConfig']['Hostname'], DB_Conf::$DB_Config['DbConfig']['Username'], DB_Conf::$DB_Config['DbConfig']['Password'], DB_Conf::$DB_Config['DbConfig']['Database']);	 
 // echo @mysqli_ping($cont) ? 'true' : 'false';
  return $cont;
  }

  

  public static function disconnect_db($cont){
    mysqli_close($cont);
    
  }
  
}


$domain= preg_replace('/^www./','',$_SERVER['HTTP_HOST']);
$path = $_SERVER['REQUEST_URI'];
$path = strtok($path, '?');
$path = str_replace('%20',' ',$path);
$path = str_replace('%09',' ',$path);
$path = str_replace('/'.$folder_location,'',$path);
$path = str_replace($page_extension,'',$path);

$base_url='../';


$cont=DB_connect::connect_db();

$query = mysqli_query($cont, "SELECT * FROM `data` WHERE `url`='$path';");

$page_data=mysqli_fetch_assoc($query);


$type_of_page=$page_data['page_type'];

$page_id=$page_data['id'];

$location_links='';
$keyword_link='';

if( $type_of_page==0){
	$location_links='';
	$keyword_link='';
}

if( $type_of_page==1){

	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$page_id' AND `linked_to_type`='2';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};

	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$location_links.='<li><a href="/'.$folder_location.$link['url'].'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
}

if( $type_of_page==2){
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$page_id' AND `linked_to_type`='1';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$keyword_link.='<li><a href="/'.$folder_location.$link['url'].$page_extension.'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
}

if( $type_of_page==3){
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$page_id' AND `linked_to_type`='1';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$keyword_link.='<li><a href="/'.$folder_location.$link['url'].$page_extension.'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$page_id' AND `linked_to_type`='2';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$location_links.='<li><a href="/'.$folder_location.$link['url'].'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}

}

if( $type_of_page==4){
	$base_page_id=$page_data['base_page'];
	$query = mysqli_query($cont, "SELECT `page_type`, `url` FROM `data` WHERE `id`='$base_page_id';");
	$base_page=mysqli_fetch_assoc($query);
	$base_url='/'.$folder_location.$base_page['url'];
	$base_type=$base_page['page_type'];
	##query the top level page
	##get the type of page and the id from it
	##get the data from the index
	if( $base_type==1){
	
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$base_page_id' AND `linked_to_type`='2';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};

	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$location_links.='<li><a href="/'.$folder_location.$link['url'].'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
}

if( $base_type==2){
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$base_page_id' AND `linked_to_type`='1';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$keyword_link.='<li><a href="/'.$folder_location.$link['url'].$page_extension.'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
}

if( $base_type==3){
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$base_page_id' AND `linked_to_type`='1';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$keyword_link.='<li><a href="/'.$folder_location.$link['url'].$page_extension.'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}
	$query = mysqli_query($cont, "SELECT `linked_to` FROM `index` WHERE `page_id`='$base_page_id' AND `linked_to_type`='2';");
	$index_select=array();
	while($row=mysqli_fetch_assoc($query)){
		$index_select[]=$row;
	};
	foreach($index_select as $ind){
		$this_id=$ind['linked_to'];
		$query = mysqli_query($cont, "SELECT `url`,`Heading` FROM `data` WHERE `id`='$this_id';");
		$link=mysqli_fetch_assoc($query);
		$location_links.='<li><a href="/'.$folder_location.$link['url'].'">'.$link['Heading'].'</a></li>'.PHP_EOL;
	}

}
	

}

if($page_data['lat']==0){
$page_data['lat']='0';
$page_data['long']=52;	
	
}
#take the page
#find in the pages 
#look at the link structure and get the required links
#read the has reviews in order to search for reviews for the pages that are created





#if its not there create some sort of a 404 page that will try to direct you to the correct place.

DB_connect::disconnect_db($cont);
?>
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
<html lang="en-US" prefix="og: http://ogp.me/ns#">
<!--<![endif]-->
<head>
<script type="text/javascript">
var fb_param = {};
fb_param.pixel_id = '6008971142729';
fb_param.value = '0.00';
fb_param.currency = 'GBP';
(function(){
  var fpw = document.createElement('script');
  fpw.async = true;
  fpw.src = '//connect.facebook.net/en_US/fp.js';
  var ref = document.getElementsByTagName('script')[0];
  ref.parentNode.insertBefore(fpw, ref);
})();
</script>
<link href="vc-style.css" rel="stylesheet" type="text/css">
<link href="http://focus.mm-hmm.co.uk/uk/vc-style.css" rel="stylesheet" type="text/css">
<noscript>
<img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/offsite_event.php?id=6008971142729&amp;value=0&amp;currency=GBP" />
</noscript>
<script>
function initialize() {
	var myLatlng = new google.maps.LatLng(<? echo $page_data['long']; ?>, <? echo $page_data['lat']; ?>);
 var mapOptions = {
  zoom: 10,
  center: myLatlng,
  mapTypeId: google.maps.MapTypeId.ROADMAP
 };

 var map = new google.maps.Map(document.getElementById('map-canvas'),
   mapOptions);

	 
	 var contentString = '';



 var marker = new google.maps.Marker({
   position: myLatlng,
   map: map,
   title: 'Best4Ecigs'
 });
 
  infowindow.open(map,marker);
}

function loadScript() {
 var script = document.createElement('script');
 script.type = 'text/javascript';
 script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&' +
   'callback=initialize';
 document.body.appendChild(script);
}

window.onload = loadScript;
</script>
<meta charset="UTF-8" />
<title><? echo $page_data['meta_title']; ?></title>
<meta name="description" content="<? echo $page_data['meta_descriptions']; ?>" />
<link href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/favicon.ico" rel="shortcut icon" type="image/x-icon" />

<link rel="stylesheet" type="text/css" media="all" href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/style.css" />

<link rel="stylesheet" href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/css/ui-lightness/jquery-ui-1.8.17.custom.css">
<link rel="stylesheet" href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/css/ezmark.css" media="all">
<script>var path ='http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics';</script>
<link rel="alternate" type="application/rss+xml" title="Focus Clinic &raquo; Feed" href="http://www.focusclinics.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Focus Clinic &raquo; Comments Feed" href="http://www.focusclinics.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Focus Clinic &raquo; Z-LASIK Comments Feed" href="http://www.focusclinics.com/our-treatments/z-lasik/feed/" />
<link rel='stylesheet' id='NextGEN-css'  href='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/nextgen-gallery/css/nggallery.css?ver=1.0.0' type='text/css' media='screen' />
<link rel='stylesheet' id='contact-form-7-css'  href='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='pinterest-pin-it-button-css'  href='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/pinterest-pin-it-button/css/pinterest-pin-it-button.css?ver=3.9.3' type='text/css' media='all' />
<link rel='stylesheet' id='mailchimp-for-wp-form-theme-blue-css'  href='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/mailchimp-for-wp-pro/assets/css/form-theme-blue.min.css?ver=2.5.1' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?ver=3.9.3'></script>
<script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/jquery-mega-menu/js/jquery.hoverIntent.minified.js?ver=3.9.3'></script>
<script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/jquery-mega-menu/js/jquery.dcmegamenu.1.3.4.min.js?ver=3.9.3'></script>
<script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/nextgen-gallery/js/jquery.cycle.all.min.js?ver=2.9995'></script>
<script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/nextgen-gallery/js/ngg.slideshow.min.js?ver=1.06'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.focusclinics.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://db9fmqjcfwn7s.cloudfront.net/wp-includes/wlwmanifest.xml" />
<link rel='shortlink' href='http://www.focusclinics.com/?p=111' />
<link rel="stylesheet" type="text/css" href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/jquery-mega-menu/css/dcjq-mega-menu.css" media="screen" />
<!-- <meta name="NextGEN" version="1.9.3" /> -->
<style type="text/css">
#map-canvas {
	margin-top:10px;
	height: 100%;
min-height: 250px;
width: 100%;
}
h1 a {
	line-height: 1.4em;
	margin: 0px;
	padding: 5px;
	float: none;
	width: 150px;
}
.box_left {width:37%; float:left; padding-right:10px;}
.box_right {width:33%; float:left; padding-left:10px;}

p::first-letter {
 
  text-transform:capitalize;
}
h2::first-letter {

 text-transform:capitalize;
}
h1::first-letter {

  text-transform:capitalize;
}
#hidden {display:none;}
.slidingDiv {
}

.show_hide {
	display:none;
}

</style>
<style type="text/css">
.pib-sharebar li {
	width: 100px;
}
.sidebar p::first-letter {
	text-transform: capitalize;
}
.sidebar h1::first-letter {
	text-transform: capitalize;
}
.sidebar h2::first-letter {
	text-transform: capitalize;
}
.sidebar h3::first-letter {
	text-transform: capitalize;
}
#primary p::first-letter {
	text-transform: capitalize;
}
#primary h1::first-letter {
	text-transform: capitalize;
}
#primary h2::first-letter {
	text-transform: capitalize;
}
#primary h3::first-letter {
	text-transform: capitalize;
}
</style>
<link rel="stylesheet" href="http://www.focusclinics.com/wp-content/plugins/jquery-mega-menu/skin.php?widget_id=2&amp;skin=blue" type="text/css" media="screen"  />
<link rel="stylesheet" href="http://www.focusclinics.com/wp-content/plugins/jquery-mega-menu/skin.php?widget_id=3&amp;skin=green" type="text/css" media="screen"  />
<script type="text/javascript" src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.jcarousel.min.js"></script>
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/slidefade.js" type="text/javascript"></script>
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.dwFadingLinks.js" type="text/javascript"></script>
<script type="text/javascript" language="Javascript" src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.ezmark.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/contact.js" type="text/javascript"></script>
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/focus.js" type="text/javascript"></script></script>
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.ThreeDots.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/css/magnific-popup.css">
<script src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.magnific-popup.js"></script>
<script type="text/javascript">



	$(function() {
	
		$('.book-a-consultation-button').hover(
        
        	function () {
	        	$(this).find('.hover').animate({opacity:1}, {queue:false,duration:500});
	        }, function () {
		        $(this).find('.hover').animate({opacity:0}, {queue:false,duration:500});
		    }
		 );	
		 
		 $('.quick-callback-button').hover(
        
        	function () {
	        	$(this).find('.hover').animate({opacity:1}, {queue:false,duration:500});
	        }, function () {
		        $(this).find('.hover').animate({opacity:0}, {queue:false,duration:500});
		    }
		 );	
		 
		 $('.quick-callback-button2').hover(
        
        	function () {
	        	$(this).find('.hover').animate({opacity:1}, {queue:false,duration:500});
	        	$(this).find('.standard').animate({opacity:0}, {queue:false,duration:500});
	        }, function () {
		        $(this).find('.hover').animate({opacity:0}, {queue:false,duration:500});
		        $(this).find('.standard').animate({opacity:1}, {queue:false,duration:500});
		    }
		 );
		 
	
		//$("#back-top").hide();
		 
		 
	})
	
		 // hide #back-top first
	
	// fade in #back-top
	$(function () {
		$(window).scroll(function () {
			if ($(this).scrollTop() > 100) {
				$('#back-top').fadeIn();
			} else {
				$('#back-top').fadeOut();
			}
		});

		// scroll body to 0px on click
		$('#back-top').click(function () {
			$('body,html').animate({
				scrollTop: 0
			}, 800);
			return false;
		});
		
		jQuery( ".label-hover" ).parent().hover(
			function() {
				$( this ).find( ".label-hover" ).stop().fadeIn();
			}, function() {
				$( this ).find( ".label-hover" ).stop().fadeOut();
			}
		);
	})
	
	var qcw = false;
	
	function toggleCallbackWindow() {
		 
	 	if(!qcw) {
	 		
	 		qcw = true;
	 		$('.callback-window').stop().animate({height: '173px', top: '50px'});

	 	} else {
	 	
	 		qcw = false;
	 		$('.callback-window').stop().animate({height: '10px', top: '11px'}, function() { $('#popup-small-qc-message').hide(); });
	 		
	 	}
	 };
	 
	 jQuery('.callback-window input').live('keypress', function(e) {
	        c = e.which ? e.which : e.keyCode;
	        if (c == 13) {
	                e.preventDefault();                    
	                smallForm();
	        }
	});
	
	 
	 function smallForm() {
	
		errors = 0;
		
		//check required fields
		if($('#qcname').val().length == 0) {
		
			$('#qcname').addClass('input-error');
			errors++;
		
		} else $('#qcname').removeClass('input-error');
		
		if($('#qcphone').val().length == 0) {
					
			$('#qcphone').addClass('input-error');
			errors++;
					
		} else $('#qcphone').removeClass('input-error');
		
		//action
		if(errors) {
		
			$('#popup-small-qc-message').find('td').html('Please enter<br>your details');
			$('#popup-small-qc-message').fadeIn('slow').delay(2000).fadeOut('slow');
			
		} else {
			
			$('#popup-small-qc-message').find('td').html('<div style="float:left; padding-left:120px;">Sending...<div style="float: left; padding-right: 15px"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/ajax-loader2.gif" /></div><div style="clear: both"></div>');
	       $('#popup-small-qc-message').fadeIn('slow');
	        
	        var ajaxParams=[];
	        ajaxParams['name'] = $('#qcname').val();
	        ajaxParams['phone'] = $('#qcphone').val();
	        
	        $.post
	        (
	            'http://www.focusclinics.com/wp-content/themes/focusclinics/contact-callback-small.php',
	            {
	                'name' 	: ajaxParams['name'],
	                'phone' : ajaxParams['phone']
	            },
	            function(msg){ 
	            
	            	_gaq.push(['_trackEvent', 'Forms', 'Sent', 'Quick callback']);
	            
	                $('#popup-small-qc-message').delay(1000).find('td').fadeOut(function() { 
	                	
	                	$('#popup-small-qc-message').find('td').html("Thank you - we'll be<br />in touch").fadeIn();
	                	var t = setTimeout ( function() {
	                	
	                			_gaq.push(['_trackPageview', '/smallform/']);
			                	toggleCallbackWindow();
			                	//window.location.href = "http://www.focusclinics.com/thank-quickcallback-test/";
	                	
	                	}, 2000 );
	                })
	            }
	        );
	
		}
	}
	 

  

</script>
<script>
	var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', 'UA-2471000-1']);
	  _gaq.push(['_trackPageview']);
	  
	
	  (function() {
	    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	  })();
</script>
</head>
<body class="page page-id-111 page-child parent-pageid-107 page-template page-template-page-article-treatment-php">
<div id="bg-top"></div>
<div id="page" class="hfeed">
  <div id="header">
    <div id="nav_menu"> </div>
    <div style="width: 920px; height: 129px; min-height: 129px; min-width: 920px; display: block; text-align: left">
      <div style="clear: both; float: left; color: rgb(0, 131, 172); font-size: 14px; font-family: 'Avenir-55-Roma n'; margin-top: 18px; margin-left: 0px; display: inline-block; width: 180px; min-width: 180px"><a href="/"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/100p.png" /></a></div>
      <div id="logo" style="float: left; margin-left:130px; margin-top: 18px;"> <a href="/"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/focus-logo-oct2013.png" /></a> </div>
      <div id="banner" style="margin-top: 44px">
        <div class="number">020 7307 8250</div>
        <div class="both"></div>
      </div>
      <div style="clear: both"></div>
    </div>
    <div style="clear: both"></div>
    <div id="main_menu">
      <aside id="dc_jqmegamenu_widget-3" class="widget ">
        <div class="dcjq-mega-menu" id="dc_jqmegamenu_widget-3-item">
          <ul id="menu-main-menu" class="menu">
            <li id="menu-item-83" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83"><a href="//start-here/laser-eye-surgery-2015/">START HERE</a></li>
            <li id="menu-item-126" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-126"><a href="//our-treatments/results/">RESULTS</a></li>
            <li id="menu-item-106" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-106"><a href="//our-treatments/z-lasik/">TREATMENTS</a></li>
            <li id="menu-item-127" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-127"><a href="//our-treatments/laser-eye-surgery-costs-and-finance/">PRICES</a></li>
            <li id="menu-item-4029" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4029"><a href="//about-focus/testimonials/">TESTIMONIALS</a></li>
            <li id="menu-item-2272" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2272"><a href="//faq/">FAQ</a></li>
            <li id="menu-item-179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="//book-a-consultation/">FREE CONSULT</a></li>
            <li id="menu-item-133" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-133"><a href="//about-focus/the-clinic/">ABOUT</a></li>
            <li id="menu-item-474" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-474"><a href="//contact-us/">CONTACT</a></li>
          </ul>
        </div>
      </aside>
      <div style="clear: both"></div>
    </div>
    <div style="clear: both"></div>
  </div>
  <!-- #branding -->
  
  <div id="main">
    <div id="breadcrumbs"> </div>
    <div id="primary">
      <div id="content">
        <div class="content">
          <div class="container bg2">
          <div id="vc-content">
            <h1><a href="<? echo $base_url; ?>"><? echo $page_data['Heading']; ?></a></h1>
            <p><? echo $page_data['content']; ?></p>
            <? echo $page_data['box4']; ?>
           <div class="box_left">
  <h3><a class="show_hide">Local Towns</a><br /></h3>
  <div class="slidingDiv"><a class="show_hide">>>> Hide</a>
  <?php echo $location_links; ?> </div></div>
<div class="box_right">
                <h3><a class="show_hide">Nearby:</a><br /></h3>
    <div class="slidingDiv"><a class="show_hide">>>> Hide</a>
                <ul><?php echo $keyword_link; ?></ul></div>
          </div>

</div>
            <div class="social-buttons">
              <style type="text/css">
	.social-buttons {
	    float: left;
	    margin: 10px 0px;
	}
	.social-buttons #tweet {
	    margin-right: 10px;
	    float: left;
	}
	.social-buttons #facebook {
	    width: 50px;
	    overflow: hidden;
	    margin-right: 9px;
	    float:left;
	}
	.social-buttons #google-plus {
	    float: left;
	}
	
	.pin-it-btn-wrapper, .pin-it-btn-wrapper-shortcode, .pin-it-btn-wrapper-widget {
		
		float: left;
	}
	</style>
              <div id="tweet">
                <iframe scrolling="no" frameborder="0" allowtransparency="true" src="http://platform.twitter.com/widgets/tweet_button.1340179658.html#_=1341774358199&amp;count=none&amp;id=twitter-widget-0&amp;lang=en&amp;original_referer=http%3A%2F%2Fwww.focusclinics.com%2Four-treatments%2Fz-lasik%2F&amp;size=m&amp;text=http%3A%2F%2Fwww.focusclinics.com%2Four-treatments%2Fz-lasik%2F&amp;url=http%3A%2F%2Fwww.focusclinics.com%2Four-treatments%2Fz-lasik%2F" class="twitter-share-button twitter-count-none" style="width: 55px; height: 20px;" title="Twitter Tweet Button"></iframe>
                <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
              </div>
              <div id="facebook">
                <iframe scrolling="no" frameborder="0" allowtransparency="true" style="border:none; overflow:hidden; width:80px; height:21px;" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.focusclinics.com%2Four-treatments%2Fz-lasik%2F&amp;layout=button_count&amp;show_faces=true&amp;width=80&amp;action=like&amp;font=lucida+grande&amp;colorscheme=light&amp;height=21"></iframe>
              </div>
              <div class="pin-it-btn-wrapper-shortcode "><a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fwww.focusclinics.com%2Four-treatments%2Fz-lasik%2F&media=http%3A%2F%2Fwww.focusclinics.com%2Fwp-content%2Fuploads%2F2012%2F05%2FWavelight_Equipment.jpg&description=Z-LASIK" count-layout="none" class="pin-it-button-no-iframe pin-it-button-user-selects-image" rel="nobox"><img border="0" class="pib-count-img" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a></div>
              <div id="google-plus" style="margin-left: 12px">
                <g:plusone size="medium" annotation="inline" width="120" href="http://www.focusclinics.com/our-treatments/z-lasik/"></g:plusone>
                <!-- Place this render call where appropriate -->
                <script type="text/javascript">
		(function() {
		var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
		po.src = 'https://apis.google.com/js/plusone.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
		})();
		</script></div>
              </div>
           </div>
          </div>
        </div>
      </div>
      <!-- #content -->
    </div>
    <!-- #primary -->
    <p>&nbsp;</p>
    

  <div class="sidebar">
 <div class="menu_simple"><? echo $page_data['box1']; ?></div>
    
    <div class="dotted-title" style="margin-top: 3px; padding-bottom: 7px"></div>
    <div style="margin-top: 10px;"><img src="http://focus.mm-hmm.co.uk/uk//images/getintouch.png" alt="Get in touch" /></div>
    <div class="post">Fill in your details and we will call you back or reply to your email or call <strong>020 7307 8250.</strong></div>
    <div class="wpcf7" id="wpcf7-f4291-o1" lang="en-US" dir="ltr">
      <div class="screen-reader-response"></div>
      <form name="" action="/our-treatments/z-lasik/#wpcf7-f4291-o1" method="post" class="wpcf7-form" novalidate>
        <div style="display: none;">
          <input type="hidden" name="_wpcf7" value="4291" />
          <input type="hidden" name="_wpcf7_version" value="4.0.3" />
          <input type="hidden" name="_wpcf7_locale" value="en_US" />
          <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f4291-o1" />
          <input type="hidden" name="_wpnonce" value="d9932b33a5" />
        </div>
        <p style="font-size: 12px;">Name (required)<br />
          <span class="wpcf7-form-control-wrap text-944">
          <input type="text" name="text-944" value="" size="28" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="" />
        </span></p>
        <p style="font-size: 12px;">Email (required)<br />
          <span class="wpcf7-form-control-wrap your-email">
          <input type="email" name="your-email" value="" size="28" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" aria-invalid="false" placeholder="" />
        </span> </p>
        <p style="font-size: 12px;">Telephone (required)<br />
          <span class="wpcf7-form-control-wrap tel-124">
          <input type="tel" name="tel-124" value="" size="28" class="wpcf7-form-control wpcf7-text wpcf7-tel wpcf7-validates-as-required wpcf7-validates-as-tel" aria-required="true" aria-invalid="false" placeholder="" />
        </span> </p>
        <p style="font-size: 12px;">Message<br />
          <span class="wpcf7-form-control-wrap your-message">
          <textarea name="your-message" cols="40" rows="8" class="wpcf7-form-control wpcf7-textarea" aria-invalid="false" placeholder="Enter your message">Short sighted or long sighted etc</textarea>
        </span> </p>
        <p>
          <input type="submit" value="SUBMIT FORM" class="wpcf7-form-control wpcf7-submit" />
        </p>
        <div class="wpcf7-response-output wpcf7-display-none"></div>
      </form>
    </div>
    <div class="dotted-title" style="margin-top: 3px; padding-bottom: 7px"></div>
    <div class="post">
      <h3> <a href="//our-treatments/z-lasik/">Treatments</a></h3>
      <ul style="padding-left: 0; font-size: 12px; line-height: 18px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, Arial, Verdana, sans-serif; color: #323232; ">
        <div class="menucss" style="padding-left: 30px;">
        <li><a href="//our-treatments/z-lasik/" style="color: #222; text-decoration: none;">Z-LASIK</a></li>
        <li><a href="//our-treatments/short-sightedness-treatment/" style="color: #222; text-decoration: none;">Short-sight Surgery</a></li>
        <li><a href="//our-treatments/presbyopia-treatment/" style="color: #222; text-decoration: none;">LASIK Blended Vision (for reading glasses)</a></li>
        <li><a href="//our-treatments/age-40-and-reading-glasses/" style="color: #222; text-decoration: none;">Reading Glasses</a></li>
        <li><a href="//our-treatments/long-sightedness-treatment/" style="color: #222; text-decoration: none;">Long-sight Surgery</a></li>
        <li><a href="//our-treatments/specialist-treatments/" style="color: #222; text-decoration: none;">RLE: Refractive Lens Exchange</a></li>
        <li><a href="//our-treatments/prk-lasek/" style="color: #222; text-decoration: none;">PRK & LASEK</a></li>
      </ul>      
<div id="map">
        <div id="map-canvas"></div>
  </div>
      <p><? echo $page_data['box3']; ?><? echo $page_data['box2']; ?></p>
      
    </div>
  </div>
  <div style="clear: both"></div>
</div>
<!-- #main --><!-- #page -->

<div class="fade-bg"></div>
<div class="footer_container">
  <div class="footer_wrapper">
    <div style="display: none; position: absolute; z-index: 10; left: 976px; cursor: pointer" id="back-top">
      <div style="position: fixed; bottom: 100px"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/button-top-focus.png" width="56" height="63" alt="Go to top" /></div>
    </div>
    <div style="height: 668px;">
      <div class="list">
        <h5><a href="//start-here/laser-eye-surgery-2015/">Why have vision correction?</a></h5>
        <ul>
          <li><a href="//start-here/laser-eye-surgery-today">LASIK Today</a></li>
          <li><a href="//start-here/your-safety">Your Safety</a></li>
          <li><a href="//start-here/your-consultation">Your Consultation</a></li>
          <li><a href="//start-here/your-surgery-day">Your Surgery Day</a></li>
          <li><a href="//start-here/your-first-day-without-glasses">Your First Day Without Glasses</a></li>
          <li><a href="//start-here/aftercare-lifetime-guarantee">Aftercare &amp; Lifetime Guarantee</a></li>
          <li><a href="//start-here/living-without-glasses-or-contacts">Living without Glasses or Contacts</a></li>
        </ul>
      </div>
      <div class="list">
        <h5><a href="//our-treatments/z-lasik-crystal-plus">Our Treatments</a></h5>
        <ul>
          <li><a href="//our-treatments/laser-eye-surgeons/">Laser Eye Surgeons</a><br>
          </li>
          <li><a href="//our-treatments/short-sightedness-treatment/">Short-Sight Treatment</a><br>
          </li>
          <li><a href="//our-treatments/long-sightedness-treatment/">Long-Sight Treatment</a><br>
          </li>
          <li><a href="//our-treatments/laser-eye-treatment/">Laser Eye Treatment</a><br>
          </li>
          <li><a href="//our-treatments/presbyopia-treatment/">Presbyopia Treatment</a><br>
          </li>
          <li><a href="//our-treatments/astigmatism-lasik-surgery/">Astigmatism Laser Surgery</a><br>
          </li>
          <li><a href="//our-treatments/blended-vision-surgery/">Blended Vision</a><br>
          </li>
          <li><a href="//our-treatments/z-lasik/">Lasik London</a><br>
          </li>
        </ul>
      </div>
      <div class="list">
        <h5><a href="//about-focus/the-clinic">About Focus</a></h5>
        <ul>
          <li><a href="//about-focus/the-clinic">About Focus</a></li>
          <li><a href="//about-focus/meet-the-team">Meet The Team</a></li>
          <li><a href="//about-focus/celebrities">Celebrities</a></li>
          <li><a href="//about-focus/testimonials">Testimonials</a></li>
          <li><a href="//about-focus/press">Press Page</a></li>
          <li><a href="//content/careers">Careers</a></li>
          <li><a href="//about-focus/testimonials/">Reviews</a></li>
        </ul>
      </div>
      <div class="list">
        <h5><a href="//research/history">Research</a></h5>
        <ul style="padding: 0">
          <li><a href="//research/history">History</a></li>
          <li><a href="//research/technology-and-innovation">Technology and Innovation</a></li>
          <li><a href="//research/international-presentations">International Presentations</a></li>
          <li><a href="//research/eye-for-an-eye-charity">Eye for an Eye Charity</a></li>
          <li><a href="//research/published-articles">Published Articles</a></li>
          <li><a href="//research/laser-eye-technology/">Laser Eye Technology</a></li>
          <li><a href="//about-focus/laser-eye-surgery-risks/">Safety & Risks</a></li>
        </ul>
      </div>
      <div style="clear: both;">
        <div class="list" style=" width: 269px">
          <h5><a href="//contact-us">Contact Us</a></h5>
          <ul>
            <li><a href="//book-a-consultation">Book a Consultation</a></li>
          </ul>
          <h5><a href="//eye-conditions/">Eye Conditions</a></h5>
        </div>
        <div class="list noh5" style="margin-left: 22px">
          <h5><a href="//blog">Blog</a></h5>
          <h5><a href="//sitemap" target="_self">Sitemap</a></h5>
          <h5><a href="//book-a-consultation/" target="_self">Book your free consultation</a></h5>
        </div>
        <div style="clear: both"></div>
      </div>
      <div class="line"></div>
      <div class="map">
        <h5>VISITING FOCUS</h5>
        <div style="float: left;"><a href="http://goo.gl/maps/pgFa" target="_blank"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/map-focus.png" width="224" height="149" alt="Map"/></a></div>
        <div class="desc" style="width: 0px; margin-left: 18px; margin-right: 32px;"><br />
          <br />
        </div>
        <div style="clear: both"></div>
      </div>
      <div class="social_icons">
        <h5></h5>
        <div style="margin-right: 30px;"><a href="//associations/" target="_blank"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/logo-cqc.png" width="167" height="55" alt="Care Quality Commission" /></a></div>
        <a href="//associations/" target="_blank"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/logo-imperial.png" width="322" height="55" alt="Imperial College NHS Trust" /></a> </div>
      <div class="social_icons">
        <h5></h5>
        <div style="margin-right: 30px;"><a href="//associations/" target="_blank"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/logo-wl-tag.png" width="190" height="73" alt="WaveLight Lasers" /></a></div>
        <a href="//associations/" target="_blank"><img src="http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/images/logo-ldv.png" width="215" height="55" alt="Ziemer lasers" /></a> </div>
      <div style="clear: both"></div>
      <div class="line"></div>
    </div>
  </div>
  <script type="text/javascript">
				jQuery(document).ready(function($) {
					jQuery('#dc_jqmegamenu_widget-2-item .menu').dcMegaMenu({
						rowItems: 1,
						subMenuWidth: '',
						speed: 'slow',
						effect: 'slide',
						event: 'hover'
											});
				});
			</script> 
  <script type="text/javascript">
				jQuery(document).ready(function($) {
					jQuery('#dc_jqmegamenu_widget-3-item .menu').dcMegaMenu({
						rowItems: 1,
						subMenuWidth: '',
						speed: 0,
						effect: 'slide',
						event: 'hover'
											});
				});
			</script> 
            <script type="text/javascript">

$(document).ready(function(){


    $(".slidingDiv").hide();
	$(".show_hide").show();
	
	$('.show_hide').click(function(){
	$(".slidingDiv").slideToggle();
	});

});

</script>

  <script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script> 
  <script type='text/javascript'>
/* <![CDATA[ */
var _wpcf7 = {"loaderUrl":"http:\/\/www.focusclinics.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","sending":"Sending ...","cached":"1"};
/* ]]> */
</script> 
  <script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.0.3'></script> 
  <script type='text/javascript' src='http://db9fmqjcfwn7s.cloudfront.net/wp-content/plugins/pinterest-pin-it-button/js/pin-it-button-user-selects-image.js?ver=3.9.3'></script>
  <div style="background: #bedeeb">
    <div class="footer_blue">Focus Clinic 20 - 22 Wimpole Street London W1G 8GQ 0207 307 8250 <a href='&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#105;&#110;&#102;&#111;&#64;&#102;&#111;&#99;&#117;&#115;&#99;&#108;&#105;&#110;&#105;&#99;&#115;&#46;&#99;&#111;&#109;'>&#105;&#110;&#102;&#111;&#64;&#102;&#111;&#99;&#117;&#115;&#99;&#108;&#105;&#110;&#105;&#99;&#115;&#46;&#99;&#111;&#109;</a> Registered in England 4585464 | Focus Clinics &copy; 2015 <br/>
      <span class="bottom-address"><a href="//privacy-policy" target="_self">Privacy Policy</a> | <a href="//disclaimer" target="_self">Disclaimer</a> </span> 
      
      <!-- Google Code for Remarketing tag --> 
      <!-- Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. For instructions on adding this tag and more information on the above requirements, read the setup guide: google.com/ads/remarketingsetup --> 
      <script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1057361635;
var google_conversion_label = "S05nCNX5lwUQ452Y-AM";
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script> 
      <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
      <noscript>
      <div style="display:inline;"> <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/1057361635/?value=0&amp;label=S05nCNX5lwUQ452Y-AM&amp;guid=ON&amp;script=0"/> </div>
      </noscript>
    </div>
    <? echo $page_data['rich_snippets_location']; ?> <? echo $page_data['rich_snippets_product']; ?> </div>
</div>
<script type="text/javascript">
function downloadJSAtOnload() {
var element = document.createElement("script");
element.src = "http://db9fmqjcfwn7s.cloudfront.net/wp-content/themes/focusclinics/js/jquery.ThreeDots.js";
document.body.appendChild(element);
}
if (window.addEventListener)
window.addEventListener("load", downloadJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", downloadJSAtOnload);
else window.onload = downloadJSAtOnload;
</script> 

<!-- 40 queries. 0.938 seconds. --> 

<!-- Pure Chat Snippet --> 
<script type='text/javascript'>
(function () {	var done = false;	var script = document.createElement('script'); script.async = true;	script.type = 'text/javascript';	script.src = 'https://app.purechat.com/VisitorWidget/WidgetScript'; document.getElementsByTagName('HEAD').item(0).appendChild(script); script.onreadystatechange = script.onload = function (e) {	if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) { var w = new PCWidget({ c: '4c772f82-902c-451d-936b-709bba0536e1', f: true }); done = true;	}	};	})();
</script> 
<!-- End Pure Chat Snippet -->

</body>
</html>
<!-- Dynamic page generated in 0.917 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2015-01-15 13:35:58 -->

<!-- Compression = gzip -->