
	var belWin;

	function bel_winOpenStatus(lsPage) {
	    var lsUrl =lsPage;
	    bel_winOpen(lsUrl);
	    MM_displayStatusMsg(belWin,'Loading...');
	}
	function bel_winOpen(theUrl) {
	  //winwidth = screen.availWidth - 250;
	  //winheight = screen.availHeight - 250;
	  winwidth = 500;
	  winheight = 350;
	  winleft = screen.availWidth - 520;
	  wintop  = 20;
	  tmt_winOpen(theUrl,'belWin','width='+ winwidth +',height=' + winheight +',menubar=no,left='+ winleft +',top='+wintop+',status=yes,scrollbars=yes,resizable=yes',0);

	}
	function tmt_winOpen(u,id,f,df){
		if(eval(id)==null||eval(id+".closed")){
		eval(id+"=window.open('"+u+"','"+id+"','"+f+"')");eval(id+".focus()");}
		else if(df){eval(id+".focus()");}
		else{eval(id+"=window.open('"+u+"','"+id+"','"+f+"')");eval(id+".focus()");}
	}

