/* Author: Mike Deegan         */
/* Creation date: Dec 16, 2004 */

var floater;

//-- This function opens a new empty window named floater.

function openLoginPopupForgottenPasswordWindow(url) {
	
	winStats='status=1,toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=620,height=400'

  	if (navigator.appName.indexOf("Microsoft")>=0) {
	    winStats+=',left=125,top=150'
  	}else{
    	winStats+=',screenX=125,screenY=150'
  	}
  	
  	if (floater == null || floater.closed) {
        floater=window.open(url,"",winStats)
        if (floater.opener == null) floater.opener = this;
    } else {
		floater.location=url;
        floater.focus()
	}
}
