function ExecModalDialog(ModalPage, txtBox, PageHeight, PageWidth, AutoPost)
{
	var ArrayVals = new Array();
	var PassedVal;
	try
	{
		var sURL = "ModalFrame.aspx?Page=" + ModalPage;
	    ArrayVals = window.showModalDialog(sURL, "" ,"dialogheight: " + PageHeight + "px; dialogwidth: " + PageWidth + "px; center:yes; status: no; resizable: no;");
		PassedVal = ArrayVals[0];

		if (PassedVal != "#")
		{
			//if (PassedVal == "refresh")
			//{
			//	window.location.reload([true]);
			//}
			//else
			//{
				document.all[txtBox].value = PassedVal;
			//}

		}
		if (AutoPost == true)
		{
			document.Form1.cmdSubmit.click();
		}
	}

	catch(e)
	{

	}
}


function openDialog(sURL, winName, PageHeight, PageWidth)
{
	try
	{
		myWin = window.open(sURL, winName ,"height= " + PageHeight + "px; width= " + PageWidth + "px; center:yes; status: no; resizable: no;");
		myWin.focus();
	}

	catch(e)
	{

	}
}

