window.defaultStatus='Jackie Adshead - Water-Colour, Mixed-Media Artist. Faces, Figures and Felines<';

///anti copy protection
function disableselect(e){ return false; }
		function reEnable(){ return true; }
		document.onselectstart = new Function ("return false");
		if(window.sidebar){
			document.onmousedown = disableselect;
			document.onclick = reEnable;
		}

///right click
var message="All Content Copyright Jackie Adshead.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

///Window Pop Up
function Popup(url) {
	var width = 530;
	var height = 426;
	var left = (screen.width-width)/2;
	var top = (screen.height*0.8-height)/2;
		
	newWin = window.open(url, "popup", "width="+width+",height="+height+",toolbar=no,location=no,directories=no,resizable=no,scrollbars=yes,status=no,menubar=no,screenX=100,screenY=100, left="+left+", top="+top);
}