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



	
///////////////////////////////////////////////////////////////////////////////////////////////
// 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 popupchat ( page, h, w, x, y ) {
	window.open( page, "chat", "height="+h+", width="+w+",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 (c)2003 by Bracket-Racing.com\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;