function compile() {
	var slot1 = document.getElementById('slot1');
	var slot2 = document.getElementById('slot2');
	var insert = 'Slot One:' + slot1.value + '     ' + 'Slot Two:' + slot2.value;
	
	//Restore defaults
		slot1.childNodes[1].value = 'May 27';
		slot1.childNodes[1].style.background = "#FFF"
		slot1.childNodes[2].value = 'June 2';
		slot1.childNodes[2].style.background = "#FFF"
		slot2.childNodes[1].value = 'May 27';
		slot2.childNodes[1].style.background = "#FFF"
		slot2.childNodes[2].value = 'June 2';
		slot2.childNodes[2].style.background = "#FFF"
		
	if (slot1.value === 'May 27') {
		slot2.childNodes[1].value = '';
		slot2.childNodes[1].style.background = "#999"
	}
	if (slot1.value === 'June 2') {
		slot2.childNodes[2].value = '';
		slot2.childNodes[2].style.background = "#999"
	}
	if (slot2.value === 'May 27') {
		slot1.childNodes[1].value = '';
		slot1.childNodes[1].style.background = "#999"
	}
	if (slot2.value === 'June 2') {
		slot1.childNodes[2].value = '';
		slot1.childNodes[2].style.background = "#999"
	}
	document.getElementById('x_Remote_computer_name').value = insert;
}