Hi Anuj,
Here's the link:
Javascript function:
function DirectAccess()
{
var theURL = unescape(location.href);
Stream= ParameterValue(theURL,"Stream");
var theDate = ParameterValue(theURL,"Period");
if(Stream != "unknown")
{
StreamTagBrowser.getBrowserObject().setSelectedItem(Stream);
setTimeout('updateStreamDescription();',200);
var SDate = theDate.substr(0,11);
var StrDate = new Date.parse(SDate);
Start_Month.setMonth(StrDate.toString('MM'));
Start_Month.setYear(StrDate.toString('yyyy'));
thePeriod = theDate;
document.PeriodBrowser.getQueryObject().setParam(1,Stream);
document.PeriodBrowser.getQueryObject().setParam(2,theDate);
document.PeriodBrowser.getQueryObject().setStartDate(SDate);
document.PeriodBrowser.updateBrowser(true);
setTimeout('UpdateResults(thePeriod);',300);
}
}
The page opens but from time to time it does not open proparly you need to refresh sometimes if it did open correctly first time.