/***************************************************************\
|                                                               |
|                   apexx CMS & Portalsystem                    |
|                 ============================                  |
|           (c) Copyright 2005-2006, Christian Scheb            |
|                  http://www.stylemotion.de                    |
|                                                               |
|---------------------------------------------------------------|
| THIS SOFTWARE IS NOT FREE! MAKE SURE YOU OWN A VALID LICENSE! |
| DO NOT REMOVE ANY COPYRIGHTS WITHOUT PERMISSION!              |
| SOFTWARE BELONGS TO ITS AUTHORS!                              |
\***************************************************************/


//**************************** TAG-FUNCTIONS ****************************

//Simple Codes
function code(thecode,prptext,formname,fieldname) {

	//Voreinstellungen
	if ( formname ) eval("form=document."+formname);
	else form=document.textform;
	if ( fieldname ) eval("field=form."+fieldname);
	else field=form.text;
	
	gettext=prompt(lang_entertext+":\n["+thecode+"]...[/"+thecode+"]",prptext);
	if ( gettext!=null && gettext!="" ) {
		field.value+="["+thecode+"]"+gettext+"[/"+thecode+"] ";
	}
	field.focus();
}



//Links
function linkcode(thetype,formname,fieldname) {

	//Voreinstellungen
	if ( formname ) eval("form=document."+formname);
	else form=document.textform;
	if ( fieldname ) eval("field=form."+fieldname);
	else field=form.text;
	
	thetext=prompt(lang_enterltext+":","");
	if ( thetype=="EMAIL" ) {
		prp_msg=lang_entermail+":";
		prp_text="";
	}
	else {
		prp_msg=lang_enterurl+":";
		prp_text="http://";
	}
	
	theurl = prompt(prp_msg,prp_text);
	if ( theurl!=null && theurl!="" && theurl!="http://" ) {
		if ( thetext!=null && thetext!="" ) {
			field.value+="["+thetype+"="+theurl+"]"+thetext+"[/"+thetype+"] ";
		}
		else {
			field.value+="["+thetype+"]"+theurl+"[/"+thetype+"] ";
		}
	}
	
	field.focus();
}