// JavaScript Document

function editBox (html, title, width, height, field_type) {
	
	
	html = '<img src=\"http://community.husumwindenergy.com/php/font.php?item=text_headline&content='+title+'\">'+html;
	
	if(field_type == 'longtext') {
		$.fancybox({
			content : html,
			titlePosition : 'inside',
			padding: 20,
			width: 450,
			height: 450,
			autoDimensions: false,
			'onComplete'	:	function() {editorMCE ();}
		});
	}
	else {
		$.fancybox({
			'content' : html,
			'titlePosition' : 'inside',
			'padding': 20,
			'width': width,
			'height': height,
			autoDimensions: false
		});
	}
}
