function loadEditors()
{
  var editors = document.getElementsByTagName('textarea');
 
  var smpl = {
	mode : "textareas",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,link,unlink,bullist,blockquote,undo", 
	theme_advanced_buttons2 : "", 
	theme_advanced_buttons3 : "",
	paste_auto_cleanup_on_paste : true,
	paste_convert_headers_to_strong : false,
	paste_strip_class_attributes : "all",
	force_br_newlines: true,
	forced_root_block : ''
  };
  var validate = {
	mode : "textareas",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,link,unlink,bullist,blockquote,undo", 
	theme_advanced_buttons2 : "", 
	theme_advanced_buttons3 : "",
	paste_auto_cleanup_on_paste : true,
	paste_convert_headers_to_strong : false,
	paste_strip_class_attributes : "all",
	init_instance_callback : "formValidation",
	force_br_newlines: true,
	forced_root_block : ''
  };
		 
	for(var i = 0; i < editors.length; i++)
	{
	  var id = editors[i].getAttribute('id');
	  if(document.getElementById(id).className == 'required_area')
		new tinymce.Editor(id, validate).render();
	  else
		new tinymce.Editor(id, smpl).render();
	}
}

function emailUs(address){
	if(address == null || address == ""){
		address = "info@bioprocessinginc.com";
	}
	//alert(address);
	window.location="mailto:"+encodeURIComponent(address);	
}
