/* --------------------------------------------
   Javascript for Toggle Box function 
   -------------------------------------------- */


<!--
function togglePopupBox(id) {

	if(!document.getElementById) return;
	
	var box = document.getElementById(id);

	if(box.className == "popup_hide") 
	
			 box.className = "popup_show";
			 
	else box.className = "popup_hide";
	
		}
//-->


/* --------------------------------------------
   Javascript for Content Toggle Box function 
   -------------------------------------------- */


<!--
function toggleContentBox(id) {

	if(!document.getElementById) return;
	
	var box = document.getElementById(id);

	if(box.className == "content_hide") 
	
			 box.className = "content_show";
			 
	else box.className = "content_hide";
	
		}
//-->


/* --------------------------------------------
   Javascript for Content Toggle Box function 
   -------------------------------------------- */


<!--
function toggleContentThumbnailBox(id) {

	if(!document.getElementById) return;
	
	var box = document.getElementById(id);

	if(box.className == "content_hide") 
	
			 box.className = "content_thumbnail_show";
			 
	else box.className = "content_hide";
	
		}
//-->





