
var CONTENTBLOCK = new Array();

function showContent(unique, id){
	var next = getObj("Content_"+unique+"_"+id);
	if(next){
		var nextstyle = getObjStyle("Content_"+unique+"_"+id);
		if(nextstyle.display == "block"){
			nextstyle.display = "none";
		}else{
			nextstyle.display = "block";
		}
	}
}