function popup(popthis,winName,width,height,fRightAlign) {

 		//Name the window with the time called to allow multiple windows

		var iLeftPosition = 0;

		if(fRightAlign)
			iLeftPosition = screen.width - width - 20;

 		if(winName==null){
	 		now = new Date;
			winName = now.getMinutes() + now.getSeconds();
		}

		dressing = "height="+height+",width="+width+",location=no,left="+iLeftPosition+",top=0,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
		winPopup = window.open(popthis,winName,dressing);
		if(winPopup)
			winPopup.focus();
	}