function handleFocus(input) { /* this is such ugly code it makes me sad */ /* because it is hard coded. */ if (input.clicked == null && (input.value == "Untitled Survey" || input.value == "Write a helpful description for this survey here." || input.value == "Write a question description here." || input.value == "Untitled Question" || input.value == "Untitled Session" || input.value == "Write a description for this session here." || input.value == "Untitled Application" || input.value == "Write a description for this application here.")) { input.value = ""; input.style.color = "black"; input.clicked = true; } } function handleBlur(input) { if (input.value == "") { input.style.color = "#555"; input.clicked = null; if (input.id == "surveyTitle") { input.value = "Untitled Survey"; } else if (input.id == "surveyDescription") { input.value = "Write a helpful description for this survey here."; } else if (input.id == "sessionTitle") { input.value = "Untitled Session"; } else if (input.id == "sessionDescription") { input.value = "Write a description for this session here."; } else if (input.id == "applicationTitle") { input.value = "Untitled Application"; } else if (input.id == "applicationDescription") { input.value = "Write a description for this application here."; } } }