function openWin(url, name) {
	var height = screen.height

	if (height <= 600) {
        remote = window.open(url,name,'height=510,width=570,titlebar=0,channelmode=0,screenX=0,left=0,screenY=0,top=0,hotkeys=0,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0');
	} else {
        remote = window.open(url,name,'height=610,width=570,titlebar=0,channelmode=0,screenX=0,left=0,screenY=0,top=0,hotkeys=0,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0');
	}
	
    remote.focus();
    if (remote.opener == null) remote.opener = window;
    remote.opener.name = 'opener';
}

function openWinForm(url, name) {
    remote = window.open(url,name,'height=510,width=570,titlebar=0,channelmode=0,screenX=0,left=0,screenY=0,top=0,hotkeys=0,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=1');
    remote.focus();
    if (remote.opener == null) remote.opener = window;
    remote.opener.name = 'opener';
}

