var sStr = "";function checkSelection(value) {  //alert(value);  //alert(document.Order.ZipCode.value);  //alert(document.Order.canada.value);  if (value == 'us') {sStr += checkZIPCode(document.Order.ZipCode, 'ZipCode', false);}  if (value == 'canada') {sStr += checkCAZIPCode(document.Order.Province, 'Canadian ZipCode', false);}  if (value == 'intl') {    if (document.Order.Country.selectedIndex == 0) {sStr += "Please choose an international country.\r";}  }	if (value == 'form')	{		if (sStr != '')		{			alert(sStr);			sStr = '';			return false;		}			}		if (sStr != '') {		return false;	}		return true;/*  if (value == 'form') {    var bValid = false;        sStr = checkZIPCode(document.Order.ZipCode, 'ZipCode', false);    if (sStr == '') {     bValid = true;    }    sStr = checkCAZIPCode(document.Order.Province, 'Canadian ZipCode', false);    if (sStr == '') {     bValid = true;    }    if (document.Order.Country.selectedIndex != 0) {bValid = true;}    if (!bValid) {      sStr = 'You must select an option before continuing';    } else {      sStr = '';    }  }*/}