// JavaScript Document
function hidenshow(hide,show,hide2,show2,hide3,show3){
var area='document.getElementById("';
	// divs //javascript:document.getElementById("contentC").style.visibility="hidden";void(0);
	// resize //this.width<=320?this.width=500:this.width=300;void(0);
	if(hide){ eval(area+hide+'").style.display="none";'); } //HIDE
	if(show){ setTimeout(area+show+'").style.display="block";',10); } //SHOW 
	if(hide2){ eval(area+hide2+'").style.display="none";'); } //HIDE
	if(show2){ setTimeout(area+show2+'").style.display="block";',10); } //SHOW
	if(hide3){ eval(area+hide3+'").style.display="none";'); } //HIDE
	if(show3){ setTimeout(area+show3+'").style.display="block";',10); } //SHOW
}

