﻿function openChild(pageaddress, args, winSettings, hidval)
{
	var dialogArguments = new Object();
	dialogArguments.action=pageaddress;
	//var retVal=window.showModalDialog('/italyanlisesi/js/DialogGateway1.htm', dialogArguments,winSettings);
	var retVal=window.showModalDialog('/js/DialogGateway1.htm', dialogArguments,winSettings);
	if(retVal != undefined)
	{	
		if(hidval != '')
		{
		    try
		    {
			    fc(hidval).value = retVal;	
			}
			catch(ex)
			{
			}
			if(document.Form1!=null)
			{
			    document.Form1.submit();
			}
			else if(document.forms.length>0)
			{
			    document.forms[0].submit();
			}
		}
	}
	return false;
}
function closeChild(val)
{	
	window.returnValue = val;
	window.close();
}
function fc(objname)
{
	return document.getElementById(objname);
}