﻿// JScript File
var Objects;
var haveParent = false;
try {
	Objects = window.opener.parent.Objects;
} catch(e) {}
if (!Objects) {
	Objects = window.parent.Objects;
	haveParent = true;
	if (!Objects) {
		try {
			Objects = window.opener.Objects;
		} catch(e) {}
		haveParent = false;
		if (!Objects) {
			try {
				Objects = window.opener.opener.Objects;
			} catch(e) {}
			haveParent = false;
		}
	}	
	if (!Objects) {
		try {
			Objects = window.parent.parent.Objects;
		} catch(e) {}
	}
}

