// this form is gonna go by relatively quickly
function quick_submit() {
	submit_to_url(document.ttiform); 
	document.ttiform.submit();
}
//setTimeout('quick_submit()',2000);

function submit_to_url(form) {
// fix up the submit location with /ezsdd/intro and make that the action
localURL=form.TTICompletionURL.value.split("/");
if (!window.localURL[3]) {
form.TTICompletionURL.value=localURL[0]+"//"+localURL[2]+"/"+"swift/complete.html";
}
form.action="http://"+form.IP_address.value+"/ezsdd/complete";

return true;
}

function show_help () {
//netscape doesn't keep the background color correctly; so set it here
//only javascript doesn't like "rgb(153, 255, 153);" here so convert to hex first
document.getElementById("helptable").style.bgcolor = "#99FF99";
document.getElementById("helptable").style.display = "";
}

function hide_help () {
document.getElementById("helptable").style.display = "none";
}
