
function spawnFull(url,nameW) {
		if (screen.width) {
			if ((screen.width/screen.height) > 1.5) {
				// two monitors
				w = screen.width/2;
			} else {
				w = screen.width;
			}
			
			if (navigator.appName.indexOf('etscape')>0) {
				w=w-5;
			} else {
				w=w-8;
			}
			
			h = screen.height-50;
	
			if (w>800) {
				pagesize='lrg';
			} else {
				pagesize='sml';
			}
		} else {
			pagesize='sml';
		}
		
		if (navigator.appName.indexOf('etscape')>0) {
			wh = 300 - 18;
			ww = 770 - 5;
		} else {
			wh = 300 - 20;
			ww = 770 - 10;
		}
		
		wleft=0
		wtop=0
		if (screen.width) {
			if (screen.width > 800) {
			
				if (screen.width/screen.height>1.5) {
					sw = screen.width/4;
				} else {
					sw = screen.width/2;
				}
			
				wleft=(sw) - (ww/2) - 5;
				wtop=(screen.height/2) - (wh/2) - 18
				if (navigator.userAgent.indexOf('acintosh')>0) {
					wleft=wleft+4
					ww=ww-9
				}
			}
		}
		if (pagesize=='lrg') {
			w=w;
			h=h;
		} else {
			w=770;
			h=440;
		}
		window.open(url,nameW, 'width=' + w + ',height=' + h + ',left=0,top=0,scrollbars=0,status=0,location=0,resizeable=0,toolbar=0');
	}