function navigateWithPostCode(pCodeField, pJourney)
    {
 // debugger
        var pcode = document.getElementById(pCodeField);
        // alert(pcode.value);
        var startPage = GetHTTPPrefix() + "/at_home/applications/QuoteAndSwitch/AffiliateStart.aspx?journeyid=" + pJourney;
	// var startPage = GetHTTPSite() + "/at_home/forms/ApplicationStart.aspx?journeyid=" + pJourney;
	// var startPage = "http://localhost/at_home/forms/ApplicationStart.aspx?journeyid=" + pJourney;

        if (pcode)
        {
          var oNew = window.open(startPage + "&pcode=" + pcode.value,"qw","width=800,height=600,scrollbars,resizable,status");

        }
        else
        {
          var oNew = window.open(startPage,"qw","width=800,height=600,scrollbars,resizable,status");
	
        }
	return false;
    }