function openResizableWindow(page) {
	window.open(page, "featureWindowResizable", "width=646,innerwidth=646,height=480,innerheight=480,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function openNonResizableWindow(page) {
	window.open(page, "featureWindowNonResizable", "width=610,innerwidth=610,height=460,innerheight=460,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=no,resizable=no");
}

function openSizedWindow(page, iWidth, iHeight) {
	window.open(page, "featureWindowNonResizable", "width=" + iWidth + ",innerwidth=" + iWidth + ",height=" + iHeight + ",innerheight=" + iHeight + ",toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=no,resizable=no");
}

function openAutoSizeWindow(page) {
	window.open(page, "featureWindowResizable", "width=646,innerwidth=646,height=480,innerheight=480,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function PrintAndExit()
{
	window.print();
	alert('The page will print on the\n printer you requested,\n and the window will now close.');
	window.close();
}

function openNewsWindow(page) {
	window.open(page, "newsWindowResizable", "width=646,innerwidth=646,height=480,innerheight=480,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
