function toggleHidden(currGroup, currObj, Flag) {
 if (Flag == 1) {
  for (i = 0 ; i < 7; i++) {
   if (document.getElementById(currGroup + i)) {
    Obj = document.getElementById(currGroup + i).style
    Obj.display = "none"
   }
  }
 }
 if (document.getElementById) {
	 thisObj = document.getElementById(currGroup + currObj).style
 	if (thisObj.display == "block") {
 	 thisObj.display = "none"
 	}
	 else {
	  thisObj.display = "block"
	 }
	 return false
 }
 else {
	 return true
 }
}

function popup(url, name, width, height) {
	newWin = window.open(url,name,"alwaysRaised=yes,dependent=yes,height="+height+",width="+width+",scrollbars=" + ((arguments[4] == true) ? "yes" : "no") + ",resizable=yes")
	newWin.focus()
}

function scrollpopup(url, name, width, height) {
	newWin = window.open(url,name,"alwaysRaised=yes,dependent=yes,height="+height+",width="+width+",scrollbars=yes,resizable=yes")
	newWin.focus()
}
