// start toggle

function toggleDisplay(itemname)
{
var ele=document.getElementById(itemname);
if(ele.style.display=='none')ele.style.display='';
else ele.style.display='none';
  /* tmp = document.getElementsByTagName('div');
    for (i=0;i<tmp.length;i++)
    {
        //if (tmp[i].className == itemname) tmp[i].style.display = (tmp[i].style.display == 'none' || tmp[i].style.display == '') ? 'block' : 'none';
		if (tmp[i].className == itemname) tmp[i].style.display = (tmp[i].style.display == 'none' ) ? '' : 'none';
		
    } */
    
}

function disp_alert()
{
alert("You cannot pay this loan. It is closed.")
}


//start popup window script

var showpopop = true;
var pop
function popup(url,p)//opens a winow in pop up with param: p
{
	if(pop!=null && !pop.closed) pop.close()
	pop=window.open(url,"pop",p)
	pop.focus()
}

function logPopup(url, width, height){ 
	var xc = ((screen.availWidth - 10) - width) / 2;
	var yc = ((screen.availHeight- 30) - height) / 2;
	new_window = window.open(url, '', 'toolbar=0,menubar=0,resizable=no,dependent=0,status=0,scrollbars=yes,width=' + width + ',height=' + height + ',left=' + xc + ',top=' + yc);
}


function go(site)
{
url = 'http://' + site;
location.href = url;
}
//--> 