var enterZoneCode = '';
function selectZone1()
{
//    alert('selectZone1()');
    var backVal = '';
    if (!enterZoneCode || enterZoneCode == 'null')
        enterZoneCode = '';
    (new Buffalo(endPoint)).remoteCall("Print.selectZone", [enterZoneCode], function(reply) {
        backVal = reply.getResult();
		//document.getElementById("displayZone3").innerHTML = backVal;	
    });
}

function selectZone()
{
    //alert('selectZone()......');
    var backVal = '';
    if (!enterZoneCode || enterZoneCode == 'null')
        enterZoneCode = '';
    alert("defaultZoneCode=" + defaultZoneCode);
    (new Buffalo(endPoint)).remoteCall("Print.selectZone", [defaultZoneCode], function(reply) {
        backVal = reply.getResult();
		//document.getElementById("displayZone3").innerHTML = backVal;	
    });
}

function selectCity()
{
//    alert('selectCity()');
    var backVal = '';
    if (!enterZoneCode || enterZoneCode == 'null')
        enterZoneCode = '';
    (new Buffalo(endPoint)).remoteCallCity("Print.selectZone", [enterZoneCode], function(reply) {
        backVal = reply.getResult();
		//document.getElementById("displayZone3").innerHTML = backVal;
    });
}