// JavaScript Document
function popUp(URL) {
      day = new Date();
      id = day.getTime();
      eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=600');");
      }
      
function clearText(thefield)
    {
	  thefield.style.color = "black";  
	  if (thefield.value == "\(optional\)")
		    {		thefield.value = "";		}
    } 

function HideContent(d) 
    { document.getElementById(d).style.display = "none";  }

function ShowContent(d) 
    { document.getElementById(d).style.display = "block"; }

function ReverseDisplay(d) 
    {
    if(document.getElementById(d).style.display == "none")
        { document.getElementById(d).style.display = "block"; }
    else
        { document.getElementById(d).style.display = "none"; }
    }

function ReverseDisplayAdmin(d) 
    {
    if(document.getElementById(d).style.display == "none")
        { document.getElementById(d).style.display = "block";
          document.getElementById('mainContent').style.display = "none";  }
    else
        { document.getElementById(d).style.display = "none";
          document.getElementById('mainContent').style.margin = "0px"; }
    }

function FormSubmit(d) 
    {
    document.getElementById(d).innerHTML = "<img src='/img/please_wait.gif' alt='Please wait for a moment' align='right' /><br>";
    document.getElementById(d).style.display = "block";
    }
function SubmitDisable(d)
    {
        debt_form.submit.value = "Please wait a moment...";
    }