
PK 
<div class="footer" style="text-align:center;">
<!--<div class="pull-right"> 10GB of <strong>250GB</strong> Free. </div>-->
<div> <strong></strong> © <?php echo date('Y');?> Website</div>
</div>
<!-- Disable scroll-->
<script>
$(document).keydown(function(event) {
if (event.ctrlKey==true && (event.which == '61' || event.which == '107' || event.which == '173' || event.which == '109' || event.which == '187' || event.which == '189' ) ) {
event.preventDefault();
}
// 107 Num Key +
// 109 Num Key -
// 173 Min Key hyphen/underscor Hey
// 61 Plus key +/= key
});
$(window).bind('mousewheel DOMMouseScroll', function (event) {
if (event.ctrlKey == true) {
event.preventDefault();
}
});
</script>
<!-- Disable scroll-->


PK 99