function openChild(file,window) {
	childWindow = open(file, window,'toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=1,width=800,height=600,scrollbars=yes');
	if (childWindow.opener == null) childWindow.opener = self;
	childWindow.focus();
}
