name = "firstWindow";
var bigWindow = null;
function popWindow(win) {
//	bigWindow=window.open(win,"secWindow","width=1024,height=768,scrollbars=no,resizable=no,status=no,copyhistory=no,screenX=0,screenY=0,left=0,top=0");
	bigWindow=window.open(win,"secWindow","width=1024,height=768,scrollbars=no,resizable=no,status=no,copyhistory=no");
	bigWindow.focus();
}
