var processw = null;

//-------------------------------------------------------------------------------------
//  Function: openProcess
// Open "processing..." message window
//-------------------------------------------------------------------------------------
function openProcess() 
{
	if (!processw) {
		//processw = open("/v5/Members/other/processing.asp","ProcessWindow","left=260,top=235,width=325,height=150");
	}
}

function openProcess2() 
{
	if (!processw) {
		processw = open("/v5/Members/other/processing.asp","ProcessWindow","left=260,top=235,width=325,height=150");
	}
}

//-------------------------------------------------------------------------------------
//  Function: closeProcess
// Close "processing..." message window
//-------------------------------------------------------------------------------------    
function closeProcess() 
{
	if (processw) {
		//processw.close();
		processw   = null;
	}
}

