if(self != top)
{

	top.location.href = self.location.href;
};

function Pop(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 + '');

	return(true);
};

