// JavaScript Document
function dropInfo(blockid, otherid, image, otherimage) {
	if (document.getElementById(blockid).style.display == 'block') {
   	document.getElementById(blockid).style.display = 'none';
   	if (image != 'none') {
      	image.src = '';
      }
	} else {
   	document.getElementById(blockid).style.display = 'block';

		if (image != 'none') {
      	image.src = '';
      }

      if (otherid != 'none') {
      	if (document.getElementById(otherid).style.display == 'block') {
         	document.getElementById(otherid).style.display = 'none';
            otherimage.src = '';
         }
		}
	}
}
