// New window JavaScript

function makeNewWindow(newpage) {
	newWindow=window.open(newpage, 'smallWin', 'width=600,height=400,scrollbars=yes');
	newWindow.focus();
}

function makeNewWindowTall(newpage) {
	newWindow=window.open(newpage, 'smallWin', 'width=600,height=700,scrollbars=yes');
	newWindow.focus();
}

function makeNewWindow2(newpage, width, height) {
	newWindow=window.open(newpage, 'smallWin', 'width=750,height=500,scrollbars=yes');
	newWindow.focus();
}