function updateAddressFromTitle() {
	if (document.getElementById('PageID').value == '') {
		// Initialize
		var strValue;
		strValue = document.getElementById('Title').value;
		// Convert spaces to hyphens
		strValue = strValue.replace(/ /g, '-');
		// Strip punctuation
		strValue = strValue.replace(/[^a-zA-Z0-9_-]/g, '');
		strValue = strValue.toLowerCase();
		document.getElementById('PageID').value = strValue;
	}
}

function updateAddressFromSelf() {
	// Initialize
	var strValue;
	strValue = document.getElementById('PageID').value;
	// Convert spaces to hyphens
	strValue = strValue.replace(/ /g, '-');
	// Strip punctuation
	strValue = strValue.replace(/[^a-zA-Z0-9_-]/g, '');
	strValue = strValue.toLowerCase();
	document.getElementById('PageID').value = strValue;
}
