I have a child window that I get value from the parent window. However if one text box does not have any value the code stops. Can someone help me out? I am using the follow code to populate the child window.
function onload()
{
thisAppl.AppName.value = opener.document.thisForm.ApplName.value ;
thisAppl.AppMailAddress.value = opener.document.thisForm.ApplMailAddress.value ;
thisAppl.AppHomeCity.value = opener.document.thisForm.ApplMailCity.value;
thisAppl.AppGarageAddress.value = opener.document.thisForm.ApplGarageAddress.value;
thisAppl.AppGarageCity.value = opener.document.thisForm.ApplGarageCity.value;
thisAppl.AppHomePhone.value = opener.document.thisForm.ApplHomePhone.value;
thisAppl.AppWorkPhone.value = opener.document.thisForm.ApplWorkPhone.value;
thisAppl.AppWorkExt.value = opener.document.thisForm.ApplWorkExt.value;
thisAppl.AppEmail.value = opener.document.thisForm.ApplEmail.value;
thisAppl.EffectiveDate.value = opener.document.thisForm.ApplEffDate.value;
}
Thank you
function onload()
{
thisAppl.AppName.value = opener.document.thisForm.ApplName.value ;
thisAppl.AppMailAddress.value = opener.document.thisForm.ApplMailAddress.value ;
thisAppl.AppHomeCity.value = opener.document.thisForm.ApplMailCity.value;
thisAppl.AppGarageAddress.value = opener.document.thisForm.ApplGarageAddress.value;
thisAppl.AppGarageCity.value = opener.document.thisForm.ApplGarageCity.value;
thisAppl.AppHomePhone.value = opener.document.thisForm.ApplHomePhone.value;
thisAppl.AppWorkPhone.value = opener.document.thisForm.ApplWorkPhone.value;
thisAppl.AppWorkExt.value = opener.document.thisForm.ApplWorkExt.value;
thisAppl.AppEmail.value = opener.document.thisForm.ApplEmail.value;
thisAppl.EffectiveDate.value = opener.document.thisForm.ApplEffDate.value;
}
Thank you