function deloc(thefield)
{
if (thefield.defaultValue==thefield.value)
{
thefield.value = ""
thefield.style.color = "black";
}
}
var cur;
function load() {document.getElementById('div1').style.display = "inline"; cur = "div1";}
function change(panel)
{
document.getElementById(cur).style.display = "none";
document.getElementById(panel).style.display = "inline";
cur = panel;
}
function send()
{
var agree=confirm("Send message?");
if (agree)
document.contact1.submit();
}
window.onload=load();