function cms_show_add_form( page_id ) {
	var div_link = "add-div-link-" + page_id;
	var div_form = "add-div-form-" + page_id;

	Element.hide( div_link );
	Element.show( div_form );
} // end cms_show_add_form()
function cms_hide_add_form( page_id ) {
	var div_link = "add-div-link-" + page_id;
	var div_form = "add-div-form-" + page_id;

	Element.hide( div_form );
	Element.show( div_link );
} // end cms_hide_add_form()
function cms_busy_add_form( page_id ) {
	var div_busy = "add-div-busy-" + page_id;
	var div_form = "add-div-form-" + page_id;

	Element.hide( div_form );
	Element.show( div_busy );
} // end cms_busy_add_form()
function cms_show_content_form() {
	// hack to make FCKEditor work with FF on a hidden div...
	show_cms_form(); // show
	if(!document.all) { // only in FF do this "mess"
		hide_cms_form(); // hide
		show_cms_form(); // show
		enable_WYSIWYG();// make it work
	}
} // end cms_show_content_form()
function cms_hide_content_form() {
	hide_cms_form();
} // end cms_hide_content_form()
function hide_cms_form() {
	Element.hide( 'cms_contentEdit' );
	Element.show( 'cms_contentShow' );
} // end hide_cms_form()
function show_cms_form() {
	Element.hide( 'cms_contentShow' );
	Element.show( 'cms_contentEdit' );
} // end show_cms_form()
//function enable_WYSIWYG() {
//} // end enable_WYSIWYG() 
function cms_busy_content_form() {
	Element.hide( 'cms_contentEdit' );
	Element.show( 'cms_contentBusy' );
} // end cms_busy_content_form()
