///////////////////////////////////////////////////////////////////
///																///
///	tk.esterni, this is a box application						///
///	developed by triknine										///
///																///
///////////////////////////////////////////////////////////////////

/// THIS IS A BOX GLOBAL VARS
thisisabox_divs = new Array();
thisisabox_contents = new Array();
thisisabox_isOpen = new Array();


function thisisanhiddentext_open(obj,button) {
 	obj = document.getElementById(obj);
 	button = document.getElementById(button);
 	if (!(obj.className == "open")) {
	  	obj.className = "open";
	  	button.src = button.readless;
	}
 	else {
 	 	obj.className = "closed";
		button.src = button.readmore;
	}
}