var field = null;

function doc_clear(tag) {
	form_dopost(tag);
}

function doc_show(tag) {
	field = tag.getAttribute('text');
	dlg_show(500, 206, tag.getAttribute('ptp'));
}

function doc_ok() {
	var objText = window.opener.document.getElementById(window.opener.field);
	objText.innerHTML = doc_text;
	close();
}

function doc_cancel() {
	close();
}

function DoNotCloseWnd()
{
	if (window.opener && window.opener.dlg)
		window.opener.dlg = null;
}