// JavaScript Document
function loadajaxdata(url,destination)
  {
  var xmlHttp;
  try
    {
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        //alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
	xmlHttp.onreadystatechange=function()
	  {
	  if(xmlHttp.readyState==4)
		{
		document.getElementById(destination).innerHTML=xmlHttp.responseText;
		}
	  }
	xmlHttp.open('GET',url,true);
	xmlHttp.send(null);
  }
function expanddatebox(field){
	document.getElementById(field).style.display='block';
}
function hidegallerybox(){
	var gallerynote = document.getElementById('gallery-note');
	var gallerybox = document.getElementById('gallerybox');
	if(gallerybox.className == 'gallerybox gallerybox_hide'){
		gallerynote.innerHTML = 'Click here to hide list';
		gallerybox.className = 'gallerybox gallerybox_show';
		gallerynote.className = 'gallerybox_note_show';
	} else {
		gallerynote.innerHTML = 'Click here to show list';
		gallerybox.className = 'gallerybox gallerybox_hide';
		gallerynote.className = 'gallerybox_note_hide';
	}
}