function newWindow(htmlpage) {
var winWidth=screen.width - 5;
var winHeight=screen.height - 30;
	bookWindow = window.open(htmlpage, "newWin", "resizable=yes,scrollbars=yes,width="+winWidth+",height="+winHeight+",left=0,top=0")
	bookWindow.focus()
}

function newHomeWindow(htmlpage) {
var winWidth=screen.width - 5;
var winHeight=screen.height - 30;
	bookWindow = window.open(htmlpage, "homeWin", "status=yes,location=yes,toolbar=yes,resizable=yes,scrollbars=yes,width="+winWidth+",height="+winHeight+",left=0,top=0")
	bookWindow.focus()
}

function leftWindow(htmlpage) {

if (screen.width == 800) {
	bookWindow = window.open(htmlpage, "leftWin", "resizable=yes,scrollbars=yes,width=573,height=400,left=0,top=0")
	bookWindow.focus()
	}
if (screen.width == 1024) {
	bookWindow = window.open(htmlpage, "leftWin", "resizable=yes,scrollbars=yes,width=736,height=517,left=0,top=0")
	bookWindow.focus()
	}
if (screen.width == 1152) {
	bookWindow = window.open(htmlpage, "leftWin", "resizable=yes,scrollbars=yes,width=829,height=584,left=0,top=0")
	bookWindow.focus()
	}
if (screen.width == 1280 && screen.height == 960) {
	bookWindow = window.open(htmlpage, "leftWin", "resizable=yes,scrollbars=yes,width=922,height=651,left=0,top=0")
	bookWindow.focus()
	}
if (screen.width == 1280 && screen.height == 1024) {
	bookWindow = window.open(htmlpage, "leftWin", "resizable=yes,scrollbars=yes,width=922,height=696,left=0,top=0")
	bookWindow.focus()
	}
}
