Event.observe(window, 'load', function() {
  if ($('page_meta_description')) {
    tinyMCE.execCommand('mceRemoveControl', false, 'page_meta_description');
  }
});

function toggleContent(){

    if($F('form_detail_control').toLowerCase() == 'radio button' || $F('form_detail_control').toLowerCase() == 'drop down list'){
        Element.show('detail_content_box');
    } else {
		Element.hide('detail_content_box');
	}
	if($F('form_detail_control').toLowerCase() == 'text block'){
		Element.show('detail_content_area');
	} else {
		Element.hide('detail_content_area')
	}

}

function clearPermalinkList(){
	$('page_permalink_select').selectedIndex=0;
}

function clearPermalink(){
	$('page_permalink').value=$('page_permalink_select').value;
}