
///////////////////////////////////////////////////////////////////////////////////////////////
// Not Yet Active
///////////////////////////////////////////////////////////////////////////////////////////////
function NotYet() {
	alert('This feature is coming soon!');
	}
///////////////////////////////////////////////////////////////////////////////////////////////


///////////////////////////////////////////////////////////////////////////////////////////////
// Bookmark Page
///////////////////////////////////////////////////////////////////////////////////////////////
function bookmark(url, description) {
	netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
	if (navigator.appName=='Microsoft Internet Explorer') 	{
		window.external.AddFavorite(url, description);
	}
	else if (navigator.appName=='Netscape') 	{
		alert(netscape);
	}
}
///////////////////////////////////////////////////////////////////////////////////////////////



	
///////////////////////////////////////////////////////////////////////////////////////////////
// Pop Up Functions
///////////////////////////////////////////////////////////////////////////////////////////////
function popup ( page, h, w, x, y ) {
	window.open( page, "popup", "height="+h+", width="+w+",resizable=yes,status=no,z-lock,top="+y+",left="+x+",screenX="+x+",screenY="+y);
	}	
		
function cpopup ( page, h, w ) {
	var y = (screen.height - h)/2;
	var x = (screen.width - w)/2;
	var h2 = h + 25;
	var w2 = w + 20;
	window.open( page, "popup", "height="+h2+", width="+w2+",resizable=yes,status=no,z-lock,top="+y+",left="+x+",screenX="+x+",screenY="+y);
	}	
		
function spopup ( page, h, w, x, y ) {
	window.open( page, "popup", "height="+h+", width="+w+",resizable=yes,scrollbars=yes,z-lock,status=no,top="+y+",left="+x+",screenX="+x+",screenY="+y);
	}	
///////////////////////////////////////////////////////////////////////////////////////////////
// End Pop Up Functions
///////////////////////////////////////////////////////////////////////////////////////////////



///////////////////////////////////////////////////////////////////////////////////////////////
// Window Resize
///////////////////////////////////////////////////////////////////////////////////////////////
function winresize ( h, w, x, y ) {
	window.resizeTo( w, h );
	window.moveTo( x, y );
	}

	
function stopthief(ie) { var warning = "Site content, graphics and photos are copyrighted.\nPlease contact the webmaster for permission to use.";
	if (navigator.appName == 'Netscape' && ie.which == 3) {
		alert(warning);
		return false;
		}
	else
	if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
		alert(warning);
		return false;
		}
	return true;
	}

 document.onmousedown = stopthief;