var uagent    = navigator.userAgent.toLowerCase();
var is_safari = ( (uagent.indexOf('safari') != -1) || (navigator.vendor == "Apple Computer, Inc.") );
var is_ie     = ( (uagent.indexOf('msie') != -1) && (!is_opera) && (!is_safari) && (!is_webtv) );
var is_ie4    = ( (is_ie) && (uagent.indexOf("msie 4.") != -1) );
var is_moz    = (navigator.product == 'Gecko');
var is_ns     = ( (uagent.indexOf('compatible') == -1) && (uagent.indexOf('mozilla') != -1) && (!is_opera) && (!is_webtv) && (!is_safari) );
var is_ns4    = ( (is_ns) && (parseInt(navigator.appVersion) == 4) );
var is_opera  = (uagent.indexOf('opera') != -1);
var is_kon    = (uagent.indexOf('konqueror') != -1);
var is_webtv  = (uagent.indexOf('webtv') != -1);
var is_win    =  ( (uagent.indexOf("win") != -1) || (uagent.indexOf("16bit") !=- 1) );
var is_mac    = ( (uagent.indexOf("mac") != -1) || (navigator.vendor == "Apple Computer, Inc.") );
var ua_vers   = parseInt(navigator.appVersion);

var text_enter_url      = "Enter the complete URL for the hyperlink";
var text_enter_url_name = "Enter the title of the webpage";
var text_enter_image    = "Enter the complete URL for the image";
var text_enter_email    = "Enter the email address";
var error_no_url        = "You must enter a URL";
var error_no_title      = "You must enter a title";
var error_no_email      = "You must enter an email address";
var error_no_width      = "You must enter a width";
var error_no_height     = "You must enter a height";
var prompt_start        = "Enter the text to be formatted";
var help_bold           = "Insert Bold Text (alt + b)";
var help_italic         = "Insert Italic Text (alt + i)";
var help_under          = "Insert Underlined Text (alt + u)";
var help_font           = "Insert Font Face tags";
var help_size           = "Insert Font Size tags";
var help_color          = "Insert Font Color tags";
var help_close          = "Close all open tags";
var help_url            = "Insert Hyperlink (alt+ h)";
var help_img            = "Image (alt + g) [img]http://www.dom.com/img.gif[/img]";
var help_email          = "Insert Email Address (alt + e)";
var help_click_close    = "Click button again to close";

var MessageMax    = "";
var Override      = "";
var dontpassgo    = 0;

MessageMax        = parseInt(MessageMax);
	if ( MessageMax < 0 ){
		MessageMax = 0;
	}
	
	function CheckLength(){
		MessageLength  = document.REPLIER.Post.value.length;
		message  = "";
			if (MessageMax > 0){
				message = "Post: The maximum allowed length is " + MessageMax + " characters.";
			}
			else{
				message = "";
				}
		alert(message + "      So far, you have used " + MessageLength + " characters.");
	}
	
	function ValidateForm(isMsg){
		MessageLength  = document.REPLIER.Post.value.length;
		errors = "";
		
		// Check for remove attachments
			if ( document.REPLIER.removeattachid.value > 0 ){
				okdelete = confirm("Are you sure you wish to remove this attachment?");
		
				if ( okdelete == true ){
					return true;
				}
				else{
					document.REPLIER.removeattachid.value = 0;
					return false;
				}
			}
	
			if (isMsg == 1){
				if (document.REPLIER.msg_title.value.length < 2){
					errors = "You must enter a message title";
				}
			}
			
			if (MessageLength < 2){
				errors = "You must enter a message to post!";
			}
	
			if (MessageMax !=0){
				if (MessageLength > MessageMax){
			errors = "The maximum allowed length is " + MessageMax + " characters. Current Characters: " + MessageLength;
				}
			}
			
			if (errors != "" && Override == ""){
				alert(errors);
				return false;
			}
			
			else{
				document.REPLIER.submit.disabled = true;
				return true;
			}
	}
	



//--------------------------------------------
// Set up our simple tag open values
//--------------------------------------------

var B_open = 0;
var I_open = 0;
var U_open = 0;
var bbtags   = new Array();
var fombj    = document.REPLIER;


//==========================================
// Set the help bar status
//==========================================

function hstat(msg)
{
	fombj.helpbox.value = eval( "help_" + msg );
}

//==========================================
// Set the number of tags open box
//==========================================

function cstat()
{
	var c = stacksize(bbtags);
	
	if ( (c < 1) || (c == null) ) {
		c = 0;
	}
	
	if ( ! bbtags[0] ) {
		c = 0;
	}
	
	fombj.tagcount.value = c;
}


//==========================================
// Close all tags
//==========================================

function closeall()
{
	if (bbtags[0])
	{
		while (bbtags[0])
		{
			tagRemove = popstack(bbtags)
			fombj.Post.value += "[/" + tagRemove + "]";
			
			//--------------------------------------------
			// Change the button status
			// Ensure we're not looking for FONT, SIZE or COLOR as these
			// buttons don't exist, they are select lists instead.
			//--------------------------------------------
			
			if ( (tagRemove != 'FONT') && (tagRemove != 'SIZE') && (tagRemove != 'COLOR') )
			{
				eval("fombj." + tagRemove + ".value = ' " + tagRemove + " '");
				eval(tagRemove + "_open = 0");
			}
		}
	}
	
	//--------------------------------------------
	// Ensure we got them all
	//--------------------------------------------
	
	fombj.tagcount.value = 0;
	bbtags = new Array();
	fombj.Post.focus();
}


//==========================================
// ALTER FONT
//==========================================

function alterfont(theval, thetag)
{
    if (theval == 0)
    	return;
	
	if(doInsert("[" + thetag + "=" + theval + "]", "[/" + thetag + "]", true))
		pushstack(bbtags, thetag);
	
    fombj.ffont.selectedIndex  = 0;
    fombj.fsize.selectedIndex  = 0;
    fombj.fcolor.selectedIndex = 0;
    
    cstat();	
}


//==========================================
// SIMPLE TAGS (such as B, I U, etc)
//==========================================

function simpletag(thetag)
{
	var tagOpen = eval(thetag + "_open");
	
	if (tagOpen == 0)
	{
		if(doInsert("[" + thetag + "]", "[/" + thetag + "]", true))
		{
			eval(thetag + "_open = 1");

			//--------------------------------------------
			// Change the button status
			//--------------------------------------------

			eval("fombj." + thetag + ".value += '*'");
	
			pushstack(bbtags, thetag);
			cstat();
			hstat('click_close');
		}
	}
	else
	{
		//--------------------------------------------
		// Find the last occurance of the opened tag
		//--------------------------------------------
		lastindex = 0;

		for (i = 0 ; i < bbtags.length; i++ )
		{
			if ( bbtags[i] == thetag )
			{
				lastindex = i;
			}
		}

		//--------------------------------------------
		// Close all tags opened up to that tag was opened
		//--------------------------------------------
		
		while (bbtags[lastindex])
		{
			tagRemove = popstack(bbtags);
			doInsert("[/" + tagRemove + "]", "", false)
			
			//--------------------------------------------
			// Change the button status
			//--------------------------------------------
			
			if ( (tagRemove != 'FONT') && (tagRemove != 'SIZE') && (tagRemove != 'COLOR') )
			{
				eval("fombj." + tagRemove + ".value = ' " + tagRemove + " '");
				eval(tagRemove + "_open = 0");
			}
		}
		
		cstat();
	}
}

//==========================================
// URL tag
//==========================================

function tag_url()
{
    var FoundErrors = '';
    var enterURL   = prompt(text_enter_url, "http://");
    var enterTITLE = prompt(text_enter_url_name, "My Webpage");

    if (!enterURL) {
        FoundErrors += " " + error_no_url;
    }
    if (!enterTITLE) {
        FoundErrors += " " + error_no_title;
    }

    if (FoundErrors) {
        alert("Error!"+FoundErrors);
        return;
    }

	doInsert("[URL="+enterURL+"]"+enterTITLE+"[/URL]", "", false);
}

//==========================================
// Image tag
//==========================================

function tag_image()
{
    var FoundErrors = '';
    var enterURL   = prompt(text_enter_image, "http://");

    if (!enterURL) {
        FoundErrors += " " + error_no_url;
    }

    if (FoundErrors) {
        alert("Error!"+FoundErrors);
        return;
    }

	doInsert("[IMG]"+enterURL+"[/IMG]", "", false);
}

function tag_email()
{
    var emailAddress = prompt(text_enter_email, "");

    if (!emailAddress) { 
		alert(error_no_email); 
		return; 
	}

	doInsert("[EMAIL]"+emailAddress+"[/EMAIL]", "", false);
}

//--------------------------------------------
// GENERAL INSERT FUNCTION
//--------------------------------------------
// ibTag: opening tag
// ibClsTag: closing tag, used if we have selected text
// isSingle: true if we do not close the tag right now
// return value: true if the tag needs to be closed later

//

function doInsert(ibTag, ibClsTag, isSingle)
{
	var isClose = false;
	var obj_ta = fombj.Post;
	
	//----------------------------------------
	// It's IE!
	//----------------------------------------
	if ( (ua_vers >= 4) && is_ie && is_win)
	{
		if (obj_ta.isTextEdit)
		{
			obj_ta.focus();
			var sel = document.selection;
			var rng = sel.createRange();
			rng.colapse;
			if((sel.type == "Text" || sel.type == "None") && rng != null)
			{
				if(ibClsTag != "" && rng.text.length > 0)
					ibTag += rng.text + ibClsTag;
				else if(isSingle)
					isClose = true;
	
				rng.text = ibTag;
			}
		}
		else
		{
			if(isSingle)
			{
				isClose = true;
			}
			
			obj_ta.value += ibTag;
		}
	}
	//----------------------------------------
	// It's MOZZY!
	//----------------------------------------
	
	else if ( obj_ta.selectionEnd )
	{ 
		var ss = obj_ta.selectionStart;
		var st = obj_ta.scrollTop;
		var es = obj_ta.selectionEnd;
		
		if (es <= 2)
		{
			es = obj_ta.textLength;
		}
		
		var start  = (obj_ta.value).substring(0, ss);
		var middle = (obj_ta.value).substring(ss, es);
		var end    = (obj_ta.value).substring(es, obj_ta.textLength);
		
		//-----------------------------------
		// text range?
		//-----------------------------------
		
		if (obj_ta.selectionEnd - obj_ta.selectionStart > 0)
		{
			middle = ibTag + middle + ibClsTag;
		}
		else
		{
			middle = ibTag + middle;
			
			if (isSingle)
			{
				isClose = true;
			}
		}
		
		obj_ta.value = start + middle + end;
		
		var cpos = ss + (middle.length);
		
		obj_ta.selectionStart = cpos;
		obj_ta.selectionEnd   = cpos;
		obj_ta.scrollTop      = st;


	}
	//----------------------------------------
	// It's CRAPPY!
	//----------------------------------------
	else
	{
		if (isSingle)
		{
			isClose = true;
		}
		
		obj_ta.value += ibTag;
	}
	
	obj_ta.focus();

	return isClose;
}	






//==========================================
// Array: Get stack size
//==========================================

function stacksize(thearray)
{
	for (i = 0 ; i < thearray.length; i++ )
	{
		if ( (thearray[i] == "") || (thearray[i] == null) || (thearray == 'undefined') )
		{
			return i;
		}
	}
	
	return thearray.length;
}

//==========================================
// Array: Push stack
//==========================================

function pushstack(thearray, newval)
{
	arraysize = stacksize(thearray);
	thearray[arraysize] = newval;
}

//==========================================
// Array: Pop stack
//==========================================

function popstack(thearray)
{
	arraysize = stacksize(thearray);
	theval = thearray[arraysize - 1];
	delete thearray[arraysize - 1];
	return theval;
}
