/* POP-UP WINDOWS */
function openpopup(popurl){
var winpops=window.open(popurl,"","width=500,height=400,scrollbars=yes")
}

function openfairbanking(popurl){
var winpops=window.open(popurl,"","width=600,height=510,scrollbars=yes")
}

function opencalc(popurl){
var winpops=window.open(popurl,"","width=481,height=550,scrollbars=no")
}

function openbudget(popurl){
var winpops=window.open(popurl,"","width=741,height=690,scrollbars=yes")
}

/* SHOW HIDE */
function showdiv(name){
var obj = (document.getElementById)? document.getElementById(name) : eval("document.all[name]");
if (obj.style.display=="none"){
obj.style.display="";
}else{
obj.style.display="none";
}
}

/* NAVIGATION DROP-DOWN */
var dropdown_list = new Array
dropdown_list[0] = "nav-sub-debt"
dropdown_list[1] = "nav-sub-help"
dropdown_list[2] = "nav-sub-solutions"

var showme
function showdivnav(name){
clearInterval(hideme)
    showme = setInterval("showthis('"+ name + "')",100)
}

var hideme
function hidediv(name){
clearInterval(showme)
hideme = setInterval("hidethis('"+ name + "')",100)
}


function showthis(name) {

var i = 0
for (i=0;i<=2;i++){
document.getElementById(dropdown_list[i]).style.display="none";
}
var obj = (document.getElementById)? document.getElementById(name) : eval("document.all[name]");
obj.style.display="block";
clearInterval(showme)

}

function hidethis(name) {

var obj = (document.getElementById)? document.getElementById(name) : eval("document.all[name]");
obj.style.display="none";
clearInterval(hideme)
}

