function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Right click disabled!");
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;


function WinStatus() 
{
 window.status='Shillito Family History Society';
 setTimeout(WinStatus, 50);
}
WinStatus();



function openwin2(url,windowname,x,y) 
 { 	var strProperties;
	 strProperties = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+ x +',height='+ y;
 window.open(url, '_win2', strProperties);
}
