// JavaScript Document

<!-- Begin
function newWindow(mypage, myname, w, h, scroll) {
// Set default parameters
myname = myname || 'name';
w = w || 1000;
h = h || 600;
scroll = scroll || 'yes';

// Calculate window position and properties
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'

// Open the window
win = window.open(mypage, myname, winprops)

// Focus on the window
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
return false;
}

$(document).ready(function(){  
    $(document).bind("contextmenu",function(e){
		alert("This Photography is Copyright Protected Nottingham photographer Page One");
        return false;  
    });  
});

