Howdy Fellow Texan!
You might consider calling a javascript method from your calendar popup page that will call back to the "window.opener"
I am no great JavaScript Guru, but this is the code I wrote when I wanted to return the square foot value from one popup window to a field on the parent page.
function returnSqft()
{
// check to see if the window has an opener and it isn't closed
if(window.opener && (!window.opener.closed))
{
// call a method on the opener page, passing it a value
window.opener.setDeposit(sval);
// now close my popup window
window.close();
}
}
Perhaps you might use a clientside javascript method to 'refresh' the parent page as I called a javascript method called setDeposit() in the above example! :)
From a recent Yankee Transplant...