// JavaScript Document

<!-- Hide from old browsers
	
// spawn window function 

//--Position the window on the screen
		
		leftpos = 0
		if (screen) {
			leftpos = screen.width-900
			}

		function newWindow(Portfolio) {
		portWindow = window.open(Portfolio, "portWin", "width=760,height=400, scrollbars=no, left="+leftpos+",top=150")
		portWindow.focus()
	}
	
//--Spawn small window
	
		leftpos = 0
		if (screen) {
			leftpos = screen.width-900
			}

		function newWindowSmall(Rules) {
		portWindow = window.open(Rules, "portWin", "width=550,height=450, scrollbars=yes, left="+leftpos+",top=150")
		portWindow.focus()
	}
	
//End hiding from old browsers--->