
//opens new small browswer window
	function newwindow (location) {
     wopen= window.open (location, "newwindow","scrollbars=yes,toolbar=yes,width=700,height=550,left=5,top=5,resizable=yes,status=yes");
		if (wopen != null) {
			if (wopen.opener == null )
			wopen.opener = self;
			wopen.location.href=location;
		}
		if(navigator.userAgent.indexOf("MSIE 3") == -1)	{
			wopen.focus();
		}
		window.onerror=null;
	}
