﻿var mVarLastWindow = null;

function OpenPopUp(page, width, height, left, top, hasStatusBar, IsCentered, isResizable, fullScreen, name) {
    if (!name)
        name = '';

    if (fullScreen == 'yes') {
        width = screen.width;
        height = screen.height;
    }
    if (IsCentered == 'yes') {
        var x = (screen.width - width) / 2;
        var y = (screen.height - height) / 2;
    }
    else {
        var x = left;
        var y = top;
    }

    myWindow = window.open(page, name, 'scrollbars,status=' + hasStatusBar + ',resizable=' + isResizable + ',width=' + width + ',height=' + height + ',top=' + y + ',left=' + x);
            mVarLastWindow = myWindow;
            myWindow.ontop = true;

//	if (mVarLastWindow && mVarLastWindow.Name == name)
// {
//	            mVarLastWindow.Location = page;
//	            mVarLastWindow.ontop = true;
//	        }
//	else {
//	    myWindow =  window.open(page,name,'status='+hasStatusBar+',resizable='+isResizable+',width='+width+',height='+height+',top='+y+',left='+x);
//	    mVarLastWindow = myWindow;
//	    myWindow.ontop= true; 
//	}
}
