	function ShowBrowserWindow() {
		SWindow = window.open("http://www.goolsbyweb.net/ShowFrame.html","SWin", "toolbar=no,statusbar=no,scrollbars=no,width=800,height=600")
	}

	function ShowMediaPlayerWindow() {
		WMPWindow = window.open("http://www.goolsbyweb.net/Show.asx", "WMPWin", "toolbar=no,statusbar=no,scrollbars=no,width=800,height=600")
	}

	function LifeBrowserWindow() {
		LWindow = window.open("http://www.goolsbyweb.net/LifeFrame.html","LWin", "toolbar=no,statusbar=no,scrollbars=no,width=800,height=600")
	}

	function LifeMediaPlayerWindow() {
		LMPWindow = window.open("http://www.goolsbyweb.net/Life.asx", "LMPWin", "toolbar=no,statusbar=no,scrollbars=no,width=800,height=600")
	}

	function MainWindow() {
		MWindow = window.open("http://www.goolsbyweb.net/MainFrame.html", "MWin", "toolbar=no,statusbar=no,scrollbars=no,width=800,height=600")
	}

	function ResumeWindow() {
		RWindow = window.open("http://www.goolsbyweb.net/Resume.pdf", "RWin", "toolbar=yes,statusbar=no,scrollbars=yes,width=800,height=600")
	}

	if (document.layers) {
		document.captureEvents (Event.MOUSEDOWN)
	}
	document.onmousedown = captureMousedown

	function captureMousedown(evt) {
		if (evt) {
			mouseClick = evt.which
		}
		else {
			mouseClick = window.event.button
		}
		
		if (mouseClick==2 || mouseClick==3) {
			alert("GOOLSBYWEB")
			return false
		}
	}