<!-- ;
//*******************************
//*Disable Right Click on a browser
//*Made available by http://www.anandsoft.com
//*Written by Ravi Shankar Bhatia
//*The above information may not be removed ..For help please email: info@anandsoft.com
//********************************/
PopUpURL = "All images on this site are the property of Morris Muskett and may not be copied or downloaded";
isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
if (isIE||isNN)
{
document.oncontextmenu=checkV;
}
else
{
document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
document.onmousedown=checkV;
} function checkV(e)
{
if (isN4)
{
if (e.which==2||e.which==3)
{
dPUW=alert(PopUpURL);
return false;
}
}
else
{
dPUW=alert(PopUpURL);
return false;
}
}

function popitup(url , title) {
var newwindow=''
if (newwindow && !newwindow.closed)
{ newwindow.focus(); newwindow.document.clear() }
else
{ newwindow=window.open('','','width=800,height=500,resizable=1') }
newwindow.moveTo(0,0);
newwindow.document.writeln('<head> <title>' + title + '<\/title>');
newwindow.document.writeln('<\/head> <body oncontextmenu="return false;" bgcolor=#C1AECC> <center>');
newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
//*newwindow.document.writeln('<img src=' +url + '>');
newwindow.document.writeln('<div style="font-family: Helvetica,Arial,sans-serif"> <small> <p>All images on this site are the property of Morris Muskett and may not be copied or downloaded</p>');
newwindow.document.writeln('<\/div> <\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); }
}

// Based on JavaScript provided by Peter Curtis at www.pcurtis.com -->
