var theDIV=null;
function openCloseDIV(theDIV)
{
	var oDIV=document.getElementById(theDIV);
	(oDIV.style.visibility=="visible")?(oDIV.style.visibility="hidden"):(oDIV.style.visibility="visible");
}
function winimg(id)
{
	window.open('image.php?id='+id,'imagewindow','width=440,height='+(screen.height-80)+',statusbar=no,scrollbars=yes');
}
function wincontent(id)
{
	window.open('content.php?id='+id,'contentwindow','width=440,height='+(screen.height-80)+',statusbar=no,scrollbars=yes');
}


function getHTTPObject() {
  var xmlhttp;
  /*@cc_on
  @if (@_jscript_version >= 5)
    try {
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (E) {
        xmlhttp = false;
      }
    }
  @else
  xmlhttp = false;
  @end @*/
  if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
    try {
      xmlhttp = new XMLHttpRequest();
//	  xmlhttp.overrideMimeType("text/xml"); 
    } catch (e) {
      xmlhttp = false;
    }
  }
  return xmlhttp;
}

var http = getHTTPObject(); // We create the HTTP Object
