//right click disable			
var message="Sorry, that function is disabled.\n\nAll Photos Copyright Laurie Taylor, Taylor Made Photography"; 

function click(e) 
	{
	if (document.all) 
		{
		if (event.button == 2) 
			{
			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;

//popup
function popup(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
}

//force frameset

if (parent.location.href == self.location.href){
    // change the url below to the url of the
    // frameset page...
    window.location.href = 'index.html';
}