function openAWindow(path,width,height) {
        var browser;
		var center;
		var args;
		center=1;
		xposition=0; yposition=20;
        if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
                xposition = (screen.width - width) / 2;
        }
		args = "width=" + width + ","
        + "height=" + height + ","
        + "location=0,"
        + "menubar=0,"
        + "resizable=0,"
        + "scrollbars=0,"
        + "status=0,"
        + "titlebar=1,"
        + "toolbar=0,"
        + "hotkeys=1,"
        + "screenx="+xposition +","  //NN Only
        + "screeny=10,"  //NN Only
        + "left="+xposition+","     //IE Only
        + "top=20;"      //IE Only
		window.open(path,'',args);
}

