﻿function ge(theElementName){
	return document.getElementById(theElementName);
}

function displayCode(theDropDown){
	ge('txtCountryCode' + (theDropDown.id == 'drdCountryCode1' ? '' : 'Dest')).value = theDropDown.value;
}

function fixCountryCode(theBox){
	var theValue = theBox.value;
	if (theValue == '')
		theValue = '30';
	else if (theValue.substr(0, 2) == '00')
		theValue = theValue.substr(2, theValue.length);
	theBox.value = theValue;
}
