//Bookmark
function bookmark(url, description) {
netscape="First push OK and then hit CTRL+D to add a bookmark for this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}}
	
// Keeps parent frame from being loaded in child frame.
if (top != self) {
	top.location = location
}

// Disables mouse right click
var message="All material copyrighted by Martha Lochert 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;
// Opens Instruction window
function openInst() {
	var window_top = 0;
	var window_left = 0;
	instWindow = window.open('instruct.html','','scrollbars=yes,width=460,height=300,toolbar=no,status=no,top=' + window_top + ',left=' + window_left + '');
}

// Writes copyright date on bottom of pages
function date() {
	document.write('<p align="center" class="bookmark2">Copyright &copy; 2001-2010 Martha Lochert Photography<br>All Rights Reserved.</p>')
	document.close()
}