﻿function fnValShowResult(frmName)
{
	with(document.forms[frmName])
	{
	    var DrpDwnDesVal = ddlDestination.value; 
            hdnDestID.value=  DrpDwnDesVal;
        var DrpDwnPrgVal = ddlProgram.value;
            hdnPrgID.value=  DrpDwnPrgVal;						
		submit();
	}
}
function fnValShowPage(frmName)
{
	with(document.forms[frmName])
	{
	    var DrpDwnDesVal = ddlDestination.value; 
            hdnDestID.value=  DrpDwnDesVal;
        var DrpDwnPrgVal = ddlProgram.value;
            hdnPrgID.value=  DrpDwnPrgVal;						
	}
}
