Saturday, October 1, 2011











Suppose this is a paragraph with nothing but the bare essential information. You can click for an additional explanation.
Show me..




Another paragraph. Not clear?
Before_OK_text


Notice that the link text changes from 'Explain' to 'OK' to 'Say that again please?'

//select funtion
// I had to hide both drop down boxes before I showed the visible one
// otherwise it would not erase the previos box thus starting with a clean
// page

function select()
{
sel = document.close.status;
if (sel.options[sel.selectedIndex].value == 'Closed')
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
sel1.style.visibility = "visible";
}
else if (sel.options[sel.selectedIndex].value == 'Re-Assign')
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
sel2.style.visibility = "visible";
}
else
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
}
}

// First drop down box change status

Change Status To:






//First selection of closed by drop down box




//second selection of drop down box

pageorganizer.js

ar subs_array = new Array("sub1","sub2","sub3");// Put the id's of your hidden divs in this array

function displaySubs(the_sub){
if (document.getElementById(the_sub).style.display==""){
document.getElementById(the_sub).style.display = "none";return
}
for (i=0;i var my_sub = document.getElementById(subs_array[i]);
my_sub.style.display = "none";
}
document.getElementById(the_sub).style.display = "";
}