function Button_Contact_Submit_onClicked() {
if (TextEditBox_getValue("TextEditBox_Contact_Name") == "") {
try {
window.alert("Please input your name.");
} catch (err) {
window.alert('"Please input your name."');
}
} else {
if (TextEditBox_getValue("TextEditBox_Contact_Email") == "") {
try {
window.alert("Please input your email.");
} catch (err) {
window.alert('"Please input your email."');
}
} else {
if (TextEditBox_getValue("TextEditBox_Contact_Subject") == "") {
try {
window.alert("Please input the subject.");
} catch (err) {
window.alert('"Please input the subject."');
}
} else {
if (TextEditBox_getValue("TextEditBox_Contact_Message") == "") {
try {
window.alert("Please input the message.");
} catch (err) {
window.alert('"Please input the message."');
}
} else {
try {
window.alert("Thank you " + TextEditBox_getValue("TextEditBox_Contact_Name") + ", I will response ASAP :-)");
} catch (err) {
window.alert('"Thank you " + TextEditBox_getValue("TextEditBox_Contact_Name") + ", I will response ASAP :-)"');
}goToPage(7);
setTimeout(function() {
goToPage(0);
}, 1500);

}
}
}
}
}
addHandler(document.getElementById("Button_Contact_Submit"), "click", Button_Contact_Submit_onClicked);

