<script>
function facebook(pageURL, title) {
var h = 450;
var w = 450;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var pageURL = "https://www.facebook.com/sharer/sharer.php?u=<?php echo 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];?>";
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
function twitter(pageURL, title) {
var h = 440;
var w = 575;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var pageURL = "https://twitter.com/share?text=<?php echo 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];?>";
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
function googleplus(pageURL, title) {
var h = 450;
var w = 450;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var pageURL = "https://plus.google.com/share?url=<?php echo 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];?>";
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
function pinterest(pageURL, title) {
var h = 450;
var w = 450;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var pageURL = "https://www.pinterest.com/pin/create/button/?url=<?php echo 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];?>";
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
function linkedin(pageURL, title) {
var h = 450;
var w = 450;
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var pageURL = "https://www.linkedin.com/cws/share?url=<?php echo 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];?>";
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
</script>
<div id="sitefooter-wrap">
<div id="sitefooter" class="container">
<div id="copyright">
<div class="col-md-6 col-sm-12 text-left">
<p class="copyright-notice"><span class="fa fa-copyright"></span> <?php echo $footer;?></p>
</div>
<div class="col-md-6 col-sm-12">
<ul class="list-inline text-right">
<!--<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>-->
<li class="upbutton"><a class="topbutton" href="#"><i class="fa fa-arrow-circle-o-up"></i></a></li>
</ul>
</div>
</div>
</div>
</div>