function openChild(file,window) {
    childWindow=open(file,window,'resizable=no,width=605,height=495');
    if (childWindow.opener == null) childWindow.opener = self;
    }
function openChildv(file,window) {
	if (screen.height==600) {
    childWindow=open(file,window,'resizable=no,width=455,height=655,scrollbars=yes');
	} else {	
    childWindow=open(file,window,'resizable=no,width=455,height=655');}
    if (childWindow.opener == null) childWindow.opener = self;
    }

