// JavaScript Document
function newWindow(largewin) {
	if (window.screen.width >= 1024){		
	largeWindow = window.open(largewin, "newWin", "width=660,height=460,left=150,top=150")
	largeWindow.focus()
	}
else {
	largeWindow = window.open(largewin, "newWin", "width=660,height=460,left=50,top=20")
	largeWindow.focus()
}
}
function mapWindow(mapwin) {
	if (window.screen.width >= 1024){		
	mpWindow = window.open(mapwin, "newWin", "width=575,height=370,left=150,top=150")
	mpWindow.focus()
	}
else {
	mpWindow = window.open(mapwin, "newWin", "width=575,height=370,left=50,top=20")
	mpWindow.focus()
}
}
function mcintoshWindow(mcwin) {
	if (window.screen.width >= 1024){		
	mcWindow = window.open(mcwin, "newWin", "width=400,height=350,left=300,top=150")
	mcWindow.focus()
	}
else {
	mcWindow = window.open(mcwin, "newWin", "width=400,height=350,left=50,top=20")
	mcWindow.focus()
}
}
function raWindow(rawin) {
	if (window.screen.width >= 1024){		
	riverWindow = window.open(rawin, "newWin", "width=660,height=550,left=100,top=150")
	riverWindow.focus()
	}
else {
	riverWindow = window.open(rawin, "newWin", "width=660,height=550,left=50,top=20")
	riverWindow.focus()
}
}
function showpicWindow(largeshowpicwin) {
	if (window.screen.width == 1024){		
	largeshowpicWindow = window.open(largeshowpicwin, "showpicWin", "width=650,height=430,left=150,top=75")
	largeshowpicWindow.focus()
	}
else {
	largeshowpicWindow = window.open(largeshowpicwin, "showpicWin", "width=650,height=430,left=50,top=20")
	largeshowpicWindow.focus()
}
}
