//------------------------------------------------------------------------------
// PopUp functions
//------------------------------------------------------------------------------

// -----------------------------------------------------------------------------
// OpenUniquePop
// open a unique popup. If the popup is already opened, it closes and reopen
// 	pfetaures are: status=[0:1],scrollbars=[0:1],menubar=[0:1],left=[pixels],
// 	top=[pixels],width=[pixels],height=[pixels],resizable=[0:1]
//------------------------------------------------------------------------------
var uPop;
function OpenUniquePop(plink,pname,pfeatures)
{	if(uPop) uPop.close();
	uPop=window.open(plink,pname,pfeatures);
}