var m_oWnd;

m_oWnd = null;
function fModal_Open(in_cRef,in_nWidth,in_nHeight)
{

	if(m_oWnd!=null && m_oWnd.m_cWndId) 
		m_oWnd.focus();
	else
	{
		cWndId = "A"+Math.round(Math.random()*1000);
		m_oWnd = window.open(in_cRef,cWndId,"status=no,resizable=no,width="+in_nWidth+",height="+in_nHeight+",alwaysRaised=yes,dependent=yes,z-lock=yes,modal=yes"); 
		//m_oWnd = window.open(in_cRef,cWndId,"status=no,resizable=yes,width="+in_nWidth+",height="+in_nHeight+",alwaysRaised=yes,dependent=yes,z-lock=yes,modal=yes"); 
		//m_oWnd = window.open(in_cRef,cWndId,""); 
		m_oWnd.m_cWndId = cWndId;
	}
}

function fRegular_Open(in_cRef,in_nWidth,in_nHeight)
{

	if(m_oWnd!=null && m_oWnd.m_cWndId) 
		m_oWnd.focus();
	else
	{
		cWndId = "A"+Math.round(Math.random()*1000);
		//m_oWnd = window.open(in_cRef,cWndId,"status=no,resizable=no,width="+in_nWidth+",height="+in_nHeight+",alwaysRaised=yes,dependent=yes,z-lock=yes,modal=yes,scrollbars=yes"); 
		//m_oWnd = window.open(in_cRef,cWndId,"status=no,resizable=yes,width="+in_nWidth+",height="+in_nHeight+",alwaysRaised=yes,dependent=yes,z-lock=yes,modal=yes,scrollbars=yes"); 
		m_oWnd = window.open(in_cRef,cWndId,""); 
		m_oWnd.m_cWndId = cWndId;
	}
}


function fModal_Open_Parent(in_cRef,in_nWidth,in_nHeight,in_cName)
{
	cWndId	= "A"+Math.round(Math.random()*1000);
	window.opener.focus();
	window.opener.m_oWnd = window.opener.open(in_cRef,cWndId,"status=no,resizable=no,width="+in_nWidth+",height="+in_nHeight+",alwaysRaised=yes,dependent=yes,z-lock=yes,modal=yes"); 
	//window.opener.m_oWnd = window.opener.open(in_cRef,cWndId,""); 
	window.opener.m_oWnd.m_cWndId = cWndId;
	window.close();
}

function fFrm_SubmitAndRefresh(in_cFrm)
{
	//window.opener.m_oWnd=null;
	//window.opener.reload();
	//window.close();
}

function fFrm_ChangeAndSubmit(in_cFrm,in_cLink)
{
	oFrm = eval("document." + in_cFrm);
	oFrm.action=in_cLink;
	oFrm.submit();
}


function TestSubmit(in_cLink)
{
	alert(in_cLink);

	//alert(in_cLinkSubmit);
}