window.onload = function()
{ /* we have to wait until the DOM has loaded before we can hook into it. */
var stfOpen = document.getElementById('stfToggle');
stfOpen.onclick = function()
{ /* lets do our thing when a user clicks on the link */
var target = document.getElementById('stfForm');
target.style.display = target.style.display == 'none' ? 'block':'none';
}
var stfClose = document.getElementById('stfClose');
stfClose.onclick = function()
{ /* lets do our thing when a user clicks on the link */
var target = document.getElementById('stfForm');
target.style.display = target.style.display == 'none' ? 'block':'none';
}
}