// ----------------------------------------------------------------------------------------------------
// - Open Popup
// ----------------------------------------------------------------------------------------------------
function OpenPopup(sUrl, sTarget, nWidth, nHeight)
{
	var nLeft	= (screen.availWidth - nWidth) / 2;
	var nTop	= (screen.availHeight - nHeight) / 2;

	var oWin	= window.open(sUrl, sTarget, 'channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,top=' + nTop + ',left=' + nLeft + ',height=' + nHeight + ',width=' + nWidth + '');

	oWin.focus();

	return(true);
};

// ----------------------------------------------------------------------------------------------------
// - Post
// ----------------------------------------------------------------------------------------------------
function Post(v)
{
	document.forms['d'].elements['v'].value = v;

	document.forms['d'].submit();
};

function DL(s)
{
	// alert(base64decode(s) + '-');


	Post(s);

	return(false);
};

