// JavaScript Document

function newWindow(largeboat) {
	if (window.screen.width == 1024){		
	boatWindow = window.open(largeboat, "boatWin", "width=643,height=396,left=150,top=150")
	boatWindow.focus()
	}
else {
	boatWindow = window.open(largeboat, "boatWin", "width=643,height=396,left=50,top=20")
	boatWindow.focus()
}
}

function lgWindow(lgboat) {
	if (window.screen.width == 1024){		
	boatWin = window.open(lgboat, "boatWindow", "width=660,height=500,left=150,top=150")
	boatWin.focus()
	}
else {
	boatWin = window.open(lgboat, "boatWindow", "width=660,height=500,left=50,top=20")
	boatWin.focus()
}
}
