// JavaScript Document

<!--

name = "firstWindow";
var bigWindow = null;
function popupWindow(win) {
bigWindow=window.open(win,"secWindow","scrollbars=0,resizable=no,statusbar=no");
bigWindow.moveTo(0,0);
bigWindow.resizeTo(window.screen.availWidth, window.screen.availHeight);
if (document.layers) {
	window.location.href='index1.htm'
	}
bigWindow.focus();
}
//-->
