function toggleBox(szDivID, iState)
{
    var obj = document.getElementById(szDivID);
    obj.style.visibility = iState ? "visible" : "hidden";
}


function popWindow(address,name,scroll,resize,width,height) 
{ 
    var detWindow="";
    detWindow=window.open(address,name,'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=' + scroll + ',resizable=' + resize +',width=' + width + ',height=' +height);
}