function Password()
{
    var nW = window.open("", "AboutUs",
        "resizable=no,scrollbars=no,width=340,height=200");
    nW.location.href = "/HDPWRTR.aspx"
    nW = null;
}

function contact()
{    
    var nW = window.open("", "Contact", 
	"resizable=yes,scrollbars=no,width=640,height=480");
    nW.location.href = "/contact.aspx"
    nW = null;    
}

function alertbx(txt)
{
alert(txt)
}


function toggle(tName)
{
	var item = document.getElementById(tName);
	if (item == null) return;
//	item.style.display = '';
	if (item.style.display == '')
	{
		item.style.display = 'none';
	}
	else
	{
		item.style.display = '';
	}
}


//
//
//
//
//
//
//
//
//
                function toggleQuestion(tName, qName, aName)
                {
                    var title = document.getElementById(tName);
                    if (title == null) return;
                    var ans = document.getElementById(aName);
                    if (ans == null) return;
                    var que = document.getElementById(qName);
                    if (ans.style.display == '')
                    {
                      if (que != null) que.style.display = 'none';
	                    ans.style.display = 'none';
	                    var sa = document.getElementById("chkViewAll");
	                    sa.checked = false;
                    }
                    else
                    {
                        if (que != null) que.style.display = '';
	                    ans.style.display = '';
                    }
                }