// JavaScript Document

name = "firstWindow";
var bigWindow = null;
function popupWindow(win) {
bigWindow=window.open(win,"secWindow","scrollbars=0,resizable=yes,status=no");
bigWindow.moveTo(0,0);
bigWindow.resizeTo(window.screen.availWidth, window.screen.availHeight);
if (document.layers) {
	window.location.href=win;
	}
bigWindow.focus();
}
