HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: /home/httpd/html/seekya.com/DEAD/beta/manage/include/yusasp_ace1.js
/**********************************************************
Advanced Content Editor Version 3.3
Copyright © 2001-2003, Yusuf Wiryonoputro. All rights reserved.
***********************************************************/
var oUtil = new ACEUtilities();
function ACEUtilities()
	{
	this.ACEObjects = "";
	this.oName;
	this.onloadFunction = "";
	}

/*** B O X  D R A W ***/
function boxDrawDrop(width,content)
	{
	var sHTML = "" +
		"<style>" +
		"		body {border:lightgrey 0px solid;background: white;}" +
		"		td {font:8pt verdana,arial,sans-serif}" +
		"		.dropdown {cursor:hand}" +
		"</style>" +
		"<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 onselectstart=\"return event.srcElement.tagName=='INPUT'\" oncontextmenu='return false'>" +
		"		<table border=0 cellpadding=1 cellspacing=0 style='table-layout: fixed;border-right:#c3c3c3 1 solid;border-bottom:#c3c3c3 1 solid;border-left:#aeaeae 1 solid;border-top:#aeaeae 1 solid;' ID=tblPopup>" +
		"		<col width="+width+">" +
		"		<tr>" +
		"		<td>" +
		content +
		"		</td>" +
		"		</tr>" +
		"		</table>" +
		"<input type=text style='display:none;' id='inpActiveEditor' name='inpActiveEditor' contentEditable=true>" +
		"</body>";
	return sHTML;
	}

function boxDrawPop(width,title,content)
	{
	var sHTML = "" +
	"<style>" +
	"		select{height: 22px; top:2;	font:8pt verdana,arial,sans-serif}" +
	"		body {border:lightgrey 0px solid;background: #ece9d8;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e3e3e3);}" +
	"		td {font:8pt verdana,arial,sans-serif}" +
	"		.dropdown {cursor:hand}" +
	"		.bar{padding-left: 5px;border-top: #99ccff 1px solid; background: #004684;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#004684, endColorstr=#7189b7); WIDTH: 100%; border-bottom: #004684 1px solid;height: 20px}" +
	"		.bar2{border-top: #99ccff 1px solid; background: #004684;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#004684, endColorstr=#7189b7); WIDTH: 100%; border-bottom: #004684 1px solid;height: 20px}" +
	"		div	{	font:10pt tahoma,arial,sans-serif}" +
	"</style>" +
	"<body onload='' topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 onselectstart=\"return event.srcElement.tagName=='INPUT'\" oncontextmenu='return false'>" +
	"<table border=0 cellpadding=0 cellspacing=0 style='table-layout: fixed' ID=tblPopup>" +
	"<col width="+width+"><col width=13>" +
	"<tr>" +
	"<td>" +
	"		<div id='popup_BarArea' class=bar>" +
	"		<font size=2 face=tahoma color=white><b>"+title+"</b></font>" +
	"		</div>" +
	"</td>" +
	"<td style='cursor:hand' onclick=\"eval('parent.'+inpActiveEditor.value).boxHide()\">" +
	"		<div id='popup_BarArea_close' class=bar2>" +
	"		<font size=2 face=tahoma color=white><b>X</b></font>" +
	"		</div>" +
	"</td>" +
	"</tr>" +
	"<tr>" +
	"<td id='popup_ContentBorder' colspan=2 style='border-left: #336699 1px solid;border-right: #336699 1px solid;border-bottom: #336699 1px solid;' valign=top>" +
	"		<br>" +
	"		<div id=divPopup align=center>" + content +
	"		</div>" +
	"		<br>" +
	"</td>" +
	"</tr>" +
	"</table>" +
	"<input type=text style='display:none;' id='inpActiveEditor' name='inpActiveEditor' contentEditable=true>" +
	"</body>";
	return sHTML;
	}

/*** B O X   S H A R E D   F U N C T I O N S ***/
function saveSelection()
	{
	var oEditor = eval("idContent"+this.oName);
	this.Sel = oEditor.document.selection.createRange();
	this.SelType = oEditor.document.selection.type;
	}

function boxDimension(boxName)
	{
	var tblPopup = document.frames(boxName).document.body.document.all("tblPopup");
	eval("document.all."+boxName).style.width = tblPopup.offsetWidth;
	eval("document.all."+boxName).style.height = tblPopup.offsetHeight;
	}

function boxPosition(boxName)
	{
	var tblPopup = document.frames(boxName).document.body.document.all("tblPopup");
	var oArea = eval("idArea" + this.oName);

	myTop = 0; stmp = "";
	while(eval("idArea"+ this.oName + stmp).tagName!="BODY")
		{
		myTop += eval("idArea"+ this.oName + stmp).offsetTop;
		stmp += ".offsetParent";
		}

	myLeft = 0;	stmp = "";
	while(eval("idArea"+ this.oName + stmp).tagName!="BODY")
		{
		myLeft += eval("idArea"+ this.oName + stmp).offsetLeft;
		stmp += ".offsetParent";
		}

	if(oArea.offsetHeight-tblPopup.offsetHeight > 0) 
		eval("document.all."+boxName).style.pixelTop=(myTop + (oArea.offsetHeight-tblPopup.offsetHeight)/2);	
	else 
		eval("document.all."+boxName).style.pixelTop=(myTop + (oArea.offsetHeight-tblPopup.offsetHeight)/2);

	if(oArea.offsetWidth-tblPopup.offsetWidth > 0)
		eval("document.all."+boxName).style.pixelLeft=(myLeft + (oArea.offsetWidth-tblPopup.offsetWidth)/2);
	else
		eval("document.all."+boxName).style.pixelLeft=myLeft;
	}

function setPosition(idImg,boxName)//for dropdown
	{
	myTop = 0; stmp = "";
	while(eval("idImg" + stmp).tagName!="BODY")
		{stmp += ".offsetParent"; myTop += eval("idImg" + stmp).offsetTop;}
	myTop = myTop + 28;

	myLeft = 0;	stmp = "";
	while(eval("idImg" + stmp).tagName!="BODY")
		{stmp += ".offsetParent"; myLeft += eval("idImg" + stmp).offsetLeft;}
	myLeft = myLeft + 0;

	eval("document.all."+boxName).style.pixelLeft = myLeft;
	eval("document.all."+boxName).style.pixelTop = myTop;
	}

function boxHide()
	{
	if(this.useZoom) document.all.boxZoom.style.visibility = "hidden";
	if(this.useStyle) eval("document.all.boxStyle"+this.oName).style.visibility = "hidden";
	if(this.useParagraph) document.all.boxParagraph.style.visibility = "hidden";
	if(this.useFontName) document.all.boxFont.style.visibility = "hidden";
	if(this.useSize) document.all.boxSize.style.visibility = "hidden";
	if(this.useForeColor) document.all.boxForecolor.style.visibility = "hidden";
	if(this.useBackColor) document.all.boxBackcolor.style.visibility = "hidden";
	if(this.useTable) document.all.boxTable2.style.visibility = "hidden";
	if(this.useExternalLink) document.all.boxLink.style.visibility = "hidden";
	if(this.useSymbol) document.all.boxSymbol.style.visibility = "hidden";
	if(this.usePageProperties) document.all.boxPage.style.visibility = "hidden";
	}

function selOver(el)
	{
	el.style.background=this.selectionColor;
	el.style.color="white";
	}
function selOut(el)
	{
	el.style.background="";
	el.style.color="black";
	}

/**** B O X ( G E N E R I C ) ***/
function boxShowPop(boxName)
	{
	this.boxHide();
	this.saveSelection();

	eval(boxName).document.body.document.all.inpActiveEditor.innerText = this.oName;

	eval(boxName).document.body.document.all.popup_ContentBorder.style.cssText= this.style_popup_ContentBorder;
	eval(boxName).document.body.document.all.popup_BarArea.style.cssText= "width: 100%; height: 20px;padding-left: 5px;" + this.style_popup_BarArea;
	eval(boxName).document.body.document.all.popup_BarArea_close.style.cssText= "width: 100%; height: 20px;" + this.style_popup_BarArea;
	eval(boxName).document.body.style.cssText= "border:lightgrey 0px solid;" + this.style_popup_Body;

	this.boxDimension(boxName);
	this.boxPosition(boxName);
	eval("document.all."+boxName).style.zIndex = 2;
	eval("document.all."+boxName).style.visibility = "";
	eval("document.all."+boxName).focus();//editor lost focus
	}

function boxShowDrop(boxName)
	{
	this.boxHide();
	this.saveSelection();

	eval(boxName).document.body.document.all.inpActiveEditor.innerText = this.oName;

	this.boxDimension(boxName);
	this.boxPosition(boxName);
	eval("document.all."+boxName).style.zIndex = 2;
	eval("document.all."+boxName).style.visibility = "";
	eval("document.all."+boxName).focus();//editor lost focus
	}

/*** B O X ( G E N E R I C ) =>  Z O O M  ***/
function applyZoom(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{
			//~~~ frame ~~~~
			eval("parent.frames."+window.name+"." + boxZoom.document.body.document.all.inpActiveEditor.value).boxHide();
			var oEditor = eval("idContent"+boxZoom.document.body.document.all.inpActiveEditor.value);
			oEditor.document.body.style.zoom = val;
			//~~~
			return;
			}
		}
	//~~~ nonframe (popup or not) ~~~
	eval("parent." + boxZoom.document.body.document.all.inpActiveEditor.value).boxHide();
	var oEditor = eval("idContent"+boxZoom.document.body.document.all.inpActiveEditor.value);
	oEditor.document.body.style.zoom = val;
	//~~~
	}

/*** B O X ( G E N E R I C ) =>  P A R A G R A P H  ***/
function applyPara(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{//frame
			eval("parent.frames."+window.name+"." + boxParagraph.document.body.document.all.inpActiveEditor.value).doCmd2("FormatBlock",val);
			return;
			}
		}
	eval("parent." + boxParagraph.document.body.document.all.inpActiveEditor.value).doCmd2("FormatBlock",val);
	}

/*** B O X ( G E N E R I C ) =>  F O N T  N A M E ***/
function applyFont(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{//frame
			eval("parent.frames."+window.name+"." + boxFont.document.body.document.all.inpActiveEditor.value).doCmd2("fontname",val);
			return;
			}
		}
	eval("parent."+ boxFont.document.body.document.all.inpActiveEditor.value).doCmd2("fontname",val);
	}

/*** B O X ( G E N E R I C ) =>  F O N T  S I Z E ***/
function applySize(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{//frame
			eval("parent.frames."+window.name+"." + boxSize.document.body.document.all.inpActiveEditor.value).doCmd2("fontsize",val);
			return;
			}
		}
	eval("parent." + boxSize.document.body.document.all.inpActiveEditor.value).doCmd2("fontsize",val);
	}

/*** B O X ( G E N E R I C ) =>  F O N T  C O L O R ***/
function applyForecolor(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{//frame
			eval("parent.frames."+window.name+"." + boxForecolor.document.body.document.all.inpActiveEditor.value).doCmd2("ForeColor",val);
			return;
			}
		}
	eval("parent." + boxForecolor.document.body.document.all.inpActiveEditor.value).doCmd2("ForeColor",val);
	}

/*** B O X ( G E N E R I C ) =>  B A C K  C O L O R ***/
function applyBackcolor(val)
	{
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{//frame
			eval("parent.frames."+window.name+"." + boxBackcolor.document.body.document.all.inpActiveEditor.value).doCmd2("BackColor",val);
			return;
			}
		}
	eval("parent." + boxBackcolor.document.body.document.all.inpActiveEditor.value).doCmd2("BackColor",val);
	}

/*** B O X ( C U S T O M ) => P A G E  P R O P E R T I E S ***/
function boxShow_Page()
	{
	this.boxHide();
	this.saveSelection();
	boxPage.document.body.document.all.inpActiveEditor.innerText = this.oName;

	boxPage.document.body.document.all.popup_ContentBorder.style.cssText= this.style_popup_ContentBorder;
	boxPage.document.body.document.all.popup_BarArea.style.cssText= "width: 100%; height: 20px;padding-left: 5px;" + this.style_popup_BarArea;
	boxPage.document.body.document.all.popup_BarArea_close.style.cssText= "width: 100%; height: 20px;" + this.style_popup_BarArea;
	boxPage.document.body.style.cssText= "border:lightgrey 0px solid;" + this.style_popup_Body;

	//Addition
	var sTmp="";
	if(this.getPageProperties("marginLeft")==""){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("marginLeft");
		sTmp = sTmp.substr(0,sTmp.length-2);//remove last px
		}
	boxPage.document.body.document.all.inpPageLeft.innerText = sTmp;
	if(this.getPageProperties("marginRight")==""){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("marginRight");
		sTmp = sTmp.substr(0,sTmp.length-2);
		}
	boxPage.document.body.document.all.inpPageRight.innerText = sTmp;
	if(this.getPageProperties("marginTop")==""){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("marginTop");
		sTmp = sTmp.substr(0,sTmp.length-2);
		}
	boxPage.document.body.document.all.inpPageTop.innerText = sTmp;
	if(this.getPageProperties("marginBottom")==""){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("marginBottom");
		sTmp = sTmp.substr(0,sTmp.length-2);
		}
	boxPage.document.body.document.all.inpPageBottom.innerText = sTmp;

	//Special(transparent)
	if(this.getPageProperties("backgroundColor")=="transparent")
		boxPage.objColor1.setColor("");
	else
		boxPage.objColor1.setColor(this.getPageProperties("backgroundColor"));

	if(this.getPageProperties("backgroundImage")=="none"){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("backgroundImage");
		sTmp=(sTmp.substr(5));//remove first col("
		sTmp = sTmp.substr(0,sTmp.length-2);//remove last ")
		}
	boxPage.document.body.document.all.inpPageBgImg.innerText = sTmp;

	boxPage.document.body.document.all.inpPageFont.innerText = this.getPageProperties("fontFamily");

	if(this.getPageProperties("fontSize")==""){sTmp=""}
	else
		{
		sTmp = this.getPageProperties("fontSize");
		sTmp = sTmp.substr(0,sTmp.length-2);
		}
	boxPage.document.body.document.all.inpPageSize.innerText = sTmp;
	boxPage.objColor2.setColor(this.getPageProperties("color"));//col obj.

	this.boxDimension("boxPage");
	this.boxPosition("boxPage");
	document.all.boxPage.style.zIndex = 2;
	document.all.boxPage.style.visibility = "";
	document.all.boxPage.focus();
	}

function getPageProperties(style)
	{//original
	var oEditor = eval("idContent"+this.oName);
	var vRetVal = eval("idContent"+this.oName+".document.body.currentStyle."+style);
	if(vRetVal == "none transparent scroll repeat 0% 0%") vRetVal="";
	return vRetVal;
	}

function getPageCSSText()
	{//margin=>padding
	if(this.getPageProperties("backgroundImage")=="none"){sTmp=""}
	else
		{
		//Change : background-image:url("include/bullet.gif")
		//To :     background-image:url('include/bullet.gif')
		sTmp = this.getPageProperties("backgroundImage");
		sTmp=(sTmp.substr(5));//remove first col("
		sTmp = sTmp.substr(0,sTmp.length-2);//remove last ")
		sTmp = "url('" + sTmp + "')";
		}

	//asumsi: target-nya div, maka : margin => padding
	sCssText = "BACKGROUND:"+this.getPageProperties("backgroundColor")+";" +
		"BACKGROUND-IMAGE:"+sTmp+";" +
		"PADDING-LEFT:"+this.getPageProperties("marginLeft")+";" +
		"PADDING-RIGHT:"+this.getPageProperties("marginRight")+";" +
		"PADDING-TOP:"+this.getPageProperties("marginTop")+";" +
		"PADDING-BOTTOM:"+this.getPageProperties("marginBottom")+";" +
		"FONT-FAMILY:"+this.getPageProperties("fontFamily")+";" +
		"FONT-SIZE:"+this.getPageProperties("fontSize")+";" +
		"COLOR:"+this.getPageProperties("color")+";";
	return sCssText;
	}
function setPageCSSText(sPageCSSText)
	{
	//kalau asalnya dari div, maka : padding => margin
	var arrTmp = sPageCSSText.split("PADDING");
	if (arrTmp.length > 1) sPageCSSText = arrTmp.join("MARGIN");

	eval("idContent"+this.oName).document.body.style.cssText += ";" + sPageCSSText;
	}

/*** B O X ( C U S T O M ) => I N T E R N A L  L I N K ***/
function boxShow_InternalLink()
	{
	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();//Why ?
	//Because:focus akan men-set oUtil.oNamem shg bisa dipakai di default_Asset.htm

	this.boxHide();
	this.saveSelection();
	if(this.InternalLinkPageURL=="")return;
	var popleft=((document.body.clientWidth - this.InternalLinkPageWidth) / 2)+window.screenLeft;
	var poptop=(((document.body.clientHeight - this.InternalLinkPageHeight) / 2))+window.screenTop-40;
	window.open(this.InternalLinkPageURL,"NewWindow","scrollbars=NO,width="+this.InternalLinkPageWidth+",height="+this.InternalLinkPageHeight+",left="+popleft+",top="+poptop);
	}

/*** B O X ( C U S T O M ) => E X T E R N A L  L I N K ***/
function boxShow_ExternalLink()
	{
	this.boxHide();
	this.saveSelection();
	eval("boxLink").document.body.document.all.inpActiveEditor.innerText = this.oName;

	boxLink.document.body.document.all.popup_ContentBorder.style.cssText= this.style_popup_ContentBorder;
	boxLink.document.body.document.all.popup_BarArea.style.cssText= "width: 100%; height: 20px;padding-left: 5px;" + this.style_popup_BarArea;
	boxLink.document.body.document.all.popup_BarArea_close.style.cssText= "width: 100%; height: 20px;" + this.style_popup_BarArea;
	boxLink.document.body.style.cssText= "border:lightgrey 0px solid;" + this.style_popup_Body;

	//Additional
	var oSel	= this.Sel;
	var sType = this.SelType;

	if (oSel.parentElement)//If text is selected on a layer
		{
		this.SelTextFrame = GetElement(oSel.parentElement(),"DIV");//Store the active layer, so we can activate it after editing links
		if(this.SelTextFrame)this.SelTextFrameActive = true;
		else this.SelTextFrameActive = false;
		}
	else//If control is selected
		this.SelTextFrameActive = false;

	//idLinkImage & idLinkImageBorder
	if (oSel.parentElement)//If text is selected
		{
		oEl = GetElement(oSel.parentElement(),"A");//Get A element if any
		boxLink.document.body.document.all.idLinkImage.style.display = "none";//do not display Image features on the Link Dialog
		}
	else //If control is selected
		{
		oEl = GetElement(oSel.item(0),"A");//Get A element if any
		if ((oSel.item) && (oSel.item(0).tagName=="IMG"))//If an image
			{
			boxLink.document.body.document.all.idLinkImage.style.display = "block"; //display Image features on the Link Dialog
			boxLink.document.body.document.all.idLinkImageBorder.value = oSel.item(0).border; //get image border - dropdown
			}
		}

	//idLinkTarget & idLinkType & idLinkURL & idLinkName
	//Is there an A element ?
	if (oEl)//If Yes
		{
		boxLink.document.body.document.all.btnLinkInsert.style.display = "none";
		boxLink.document.body.document.all.btnLinkUpdate.style.display = "block";

		sURL = oEl.href; //get image url
		boxLink.document.body.document.all.idLinkTarget.value = oEl.target;//get image target
		if(oEl.name!=null) boxLink.document.body.document.all.idLinkName.innerText = oEl.name;
		if(oEl.NAME!=null) boxLink.document.body.document.all.idLinkName.innerText = oEl.NAME;
		if(sURL.indexOf(":")!=-1)
			{
			switch(sURL.split(":")[0])
				{
				case "http":
					boxLink.document.body.document.all.idLinkType.value = "http://";
					boxLink.document.body.document.all.idLinkURL.innerText = sURL.substr(7);
					break;
				case "https":
					boxLink.document.body.document.all.idLinkType.value = "https://";
					boxLink.document.body.document.all.idLinkURL.innerText = sURL.substr(8);
					break;
				case "mailto":
					boxLink.document.body.document.all.idLinkType.value = "mailto:";
					boxLink.document.body.document.all.idLinkURL.innerText = sURL.split(":")[1];
					break;
				case "ftp":
					boxLink.document.body.document.all.idLinkType.value = "ftp://";
					boxLink.document.body.document.all.idLinkURL.innerText = sURL.substr(6);
					break;
				case "news":
					boxLink.document.body.document.all.idLinkType.value = "news:";
					boxLink.document.body.document.all.idLinkURL.innerText = sURL.split(":")[1];
					break;
				}
			}
		else
			{
			boxLink.document.body.document.all.idLinkType.value = "";
			boxLink.document.body.document.all.idLinkURL.innerText = sURL;
			}
		}
	else //If No A element
		{
		boxLink.document.body.document.all.btnLinkInsert.style.display = "block";
		boxLink.document.body.document.all.btnLinkUpdate.style.display = "none";	

		boxLink.document.body.document.all.idLinkTarget.value = "";
		boxLink.document.body.document.all.idLinkName.innerText = "";
		boxLink.document.body.document.all.idLinkType.value = "";
		boxLink.document.body.document.all.idLinkURL.innerText = "";
		boxLink.document.body.document.all.idLinkImageBorder.value = 0;
		}

	this.boxDimension("boxLink");
	this.boxPosition("boxLink");
	document.all.boxLink.style.zIndex = 2;
	document.all.boxLink.style.visibility = "";
	document.all.boxLink.focus();
	}

function applyLink()
	{
	var inpURL = boxLink.document.body.document.all.idLinkURL.value;
	var inpURLType = boxLink.document.body.document.all.idLinkType.value;
	var sURL = inpURLType + inpURL;
	var inpAnchor = boxLink.document.body.document.all.idLinkName.value;

	var oSel	= eval(boxLink.document.body.document.all.inpActiveEditor.value).Sel;
	var sType = eval(boxLink.document.body.document.all.inpActiveEditor.value).SelType;

	//a must
	oSel = fixSel(boxLink.document.body.document.all.inpActiveEditor.value,oSel);
	sType = fixSelType(boxLink.document.body.document.all.inpActiveEditor.value,oSel,sType);

	//idLinkImageBorder
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))//If image is selected
		{
		oSel.item(0).width = oSel.item(0).offsetWidth;//give width attribute
		oSel.item(0).height = oSel.item(0).offsetHeight;//give height attribute
		oSel.item(0).border = boxLink.document.body.document.all.idLinkImageBorder.value;
		}

	if(inpURL!="")
		{
		if (oSel.parentElement)
			{
			if(boxLink.document.body.document.all.btnLinkInsert.style.display == "block")
				{
				if(oSel.text=="")//If no (text) selection, then build selection using the typed URL
					{
					var oSelTmp = oSel.duplicate();
					oSel.text = sURL;
					oSel.setEndPoint("StartToStart",oSelTmp);
					oSel.select();
					sType="Text";
					}
				}
			}

		//idLinkType & idLinkURL (sURL)
		oSel.execCommand("CreateLink",false,sURL);

		//After A element created, then add the Target
		if (oSel.parentElement)
			oEl = GetElement(oSel.parentElement(),"A");
		else
			oEl = GetElement(oSel.item(0),"A");
		if(oEl)
			{
			if(boxLink.document.body.document.all.idLinkTarget.value=="")
				oEl.removeAttribute("target",0);
			else
				oEl.target = boxLink.document.body.document.all.idLinkTarget.value;

			oEl.removeAttribute("NAME",0);
			oEl.removeAttribute("name",0);
			oEl.NAME = boxLink.document.body.document.all.idLinkName.value;

			//~~~ ANCHOR ~~~
			if(inpAnchor!="")
				{
				isImgAnchorExist=false;
				for(var j=0;j<oEl.childNodes.length;j++)
					{
					if(oEl.childNodes[j].tagName=="IMG")
						{
						sSrc = oEl.childNodes[j].src;
						if(sSrc.indexOf("yusasp_anchor.gif")!=-1) isImgAnchorExist=true;
						}
					}
				if(isImgAnchorExist!=true)
					oEl.innerHTML = "<IMG src='include/yusasp_anchor.gif' align=middle border=0>" + oEl.innerHTML;
				}
			else
				{
				for(var j=0;j<oEl.childNodes.length;j++)
					{
					if(oEl.childNodes[j].tagName=="IMG")
						{
						sSrc = oEl.childNodes[j].src;
						if(sSrc.indexOf("yusasp_anchor.gif")!=-1)
							oEl.removeChild(oEl.childNodes[j]);
						}
					}
				}
			//~~~
			}

		eval("idContent"+boxLink.document.body.document.all.inpActiveEditor.value).focus();
		oSel.select();//tambahan
		}
	else if(inpAnchor!="")
		{
		if (oSel.parentElement)
			{
			if(boxLink.document.body.document.all.btnLinkInsert.style.display == "block")
				{
				if(oSel.text=="")//If no (text) selection, then build selection using the typed URL
					{
					var oSelTmp = oSel.duplicate();
					oSel.text = inpAnchor;
					oSel.setEndPoint("StartToStart",oSelTmp);
					oSel.select();
					sType="Text";
					}
				}
			}

		oSel.execCommand("CreateLink",false,"");

		if (oSel.parentElement)
			oEl = GetElement(oSel.parentElement(),"A");
		else
			oEl = GetElement(oSel.item(0),"A");

		if(oEl)
			{
			//~~~ ANCHOR ~~~
			for(var j=0;j<oEl.childNodes.length;j++)
				{
				if(oEl.childNodes[j].tagName=="IMG")
					{
					sSrc = oEl.childNodes[j].src;
					if(sSrc.indexOf("yusasp_anchor.gif")!=-1)
						oEl.removeChild(oEl.childNodes[j]);
					}
				}
			//~~~

			oEl.removeAttribute("target",0);
			oEl.removeAttribute("href",0);

			oEl.removeAttribute("NAME",0);
			oEl.removeAttribute("name",0);
			oEl.NAME = inpAnchor;

			//~~~ ANCHOR ~~~
			oEl.innerHTML = "<IMG src='include/yusasp_anchor.gif' align=middle border=0>" + oEl.innerHTML;
			//~~~
			}
		eval("idContent"+boxLink.document.body.document.all.inpActiveEditor.value).focus();
		try
			{
			oSel.select();//tambahan	(unsp.err if no test in anchor)
			}
		catch(e){}
		}
	else
		{
		//~~~ ANCHOR ~~~
		if (oSel.parentElement)
			oEl = GetElement(oSel.parentElement(),"A");
		else
			oEl = GetElement(oSel.item(0),"A");

		if(oEl)
			{
			for(var j=0;j<oEl.childNodes.length;j++)
				{
				if(oEl.childNodes[j].tagName=="IMG")
					{
					sSrc = oEl.childNodes[j].src;
					if(sSrc.indexOf("yusasp_anchor.gif")!=-1)
						oEl.removeChild(oEl.childNodes[j]);
					}
				}
			}
		//~~~

		oSel.execCommand("unlink");//unlink
		}

	//Activate layer again
	if(eval(boxLink.document.body.document.all.inpActiveEditor.value).SelTextFrameActive) eval(boxLink.document.body.document.all.inpActiveEditor.value).SelTextFrame.setActive();

	eval(boxLink.document.body.document.all.inpActiveEditor.value).boxHide();
	}
	
/*** B O X ( C U S T O M ) => I M A G E S ***/
function boxShow_Image()
	{
	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();//Why ?
	//Because:focus akan men-set oUtil.oNamem shg bisa dipakai di default_Asset.htm

	this.boxHide();
	this.saveSelection();
	if(this.ImagePageURL=="")return;
	var popleft=((document.body.clientWidth - this.ImagePageWidth) / 2)+window.screenLeft;
	var poptop=(((document.body.clientHeight - this.ImagePageHeight) / 2))+window.screenTop-40;	
	window.open(this.ImagePageURL,"NewWindow","scrollbars=NO,width="+this.ImagePageWidth+",height="+this.ImagePageHeight+",left="+popleft+",top="+poptop);
	}

function imgSrc()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).src;
	else
		return "";
	}
function imgAlt()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).alt;
	else
		return "";
	}
function imgAlign()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).align;
	else
		return "";
	}
function imgBorder()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).border;
	else
		return "";
	}
function imgWidth()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).width;
	else
		return "";
	}
function imgHeight()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).height;
	else
		return "";
	}
function imgHspace()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).hspace;
	else
		return "";
	}
function imgVspace()
	{
	oEditor=eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		return oSel.item(0).vspace;
	else
		return "";
	}

function UpdateImage(inpImgURL,inpImgAlt,inpImgAlign,inpImgBorder,inpImgWidth,inpImgHeight,inpHSpace,inpVSpace)
	{
	var oEditor = eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	var sType = oEditor.document.selection.type;
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		{
		oSel.item(0).style.width="";
		oSel.item(0).style.height="";

		oSel.item(0).src = this.getEditorPreviewPath(inpImgURL);
		if(inpImgAlt!="")
			oSel.item(0).alt = inpImgAlt;
		else
			oSel.item(0).removeAttribute("alt",0);
		oSel.item(0).align = inpImgAlign;
		oSel.item(0).border = inpImgBorder;
		if(inpImgWidth!="")
			oSel.item(0).width = inpImgWidth;
		else
			oSel.item(0).removeAttribute("width",0);	
		if(inpImgHeight!="")
			oSel.item(0).height = inpImgHeight;
		else
			oSel.item(0).removeAttribute("height",0);		
		if(inpHSpace!="")
			oSel.item(0).hspace = inpHSpace;
		else
			oSel.item(0).removeAttribute("hspace",0);		
		if(inpVSpace!="")
			oSel.item(0).vspace = inpVSpace;
		else
			oSel.item(0).removeAttribute("vspace",0);	
		}
	}

function InsertImage(inpImgURL,inpImgAlt,inpImgAlign,inpImgBorder,inpImgWidth,inpImgHeight,inpHSpace,inpVSpace)
	{
	this.doCmd("InsertImage",this.getEditorPreviewPath(inpImgURL));
	var oEditor = eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	var sType = oEditor.document.selection.type;
	if ((oSel.item) && (oSel.item(0).tagName=="IMG"))
		{
		if(inpImgAlt!="")
			oSel.item(0).alt = inpImgAlt;
		oSel.item(0).align = inpImgAlign;
		oSel.item(0).border = inpImgBorder;
		if(inpImgWidth!="")
			oSel.item(0).width = inpImgWidth;
		if(inpImgHeight!="")
			oSel.item(0).height = inpImgHeight;
		if(inpHSpace!="")
			oSel.item(0).hspace = inpHSpace;
		if(inpVSpace!="")
			oSel.item(0).vspace = inpVSpace;
		}
	}

/*** B O X ( C U S T O M ) => A S S E T ***/
function boxShow_Asset()
	{
	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();//Why ?
	//Because:focus akan men-set oUtil.oNamem shg bisa dipakai di default_Asset.htm

	this.boxHide();
	this.saveSelection();
	if(this.AssetPageURL=="")return;
	var popleft=((document.body.clientWidth - this.AssetPageWidth) / 2)+window.screenLeft;
	var poptop=(((document.body.clientHeight - this.AssetPageHeight) / 2))+window.screenTop-40;
	window.open(this.AssetPageURL,"NewWindow","scrollbars=NO,width="+this.AssetPageWidth+",height="+this.AssetPageHeight+",left="+popleft+",top="+poptop);
	}

function InsertAsset_Hyperlink(inpURL,inpLinkText)
	{
	var oEditor = eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	var sType = oEditor.document.selection.type;

	if(inpURL!="")
		{
		if (oSel.parentElement)
			{
			if(oSel.text!="")
				{
				//noop
				}
			else
				{
				var oSelTmp = oSel.duplicate();
				if(inpLinkText=="") inpLinkText = inpURL;
				oSel.text = inpLinkText;//displayed text
				oSel.setEndPoint("StartToStart",oSelTmp);
				oSel.select();
				sType="Text";
				}
			}

		oSel.execCommand("CreateLink",false,this.getEditorPreviewPath(inpURL));

		oEditor.focus();
		oSel.select();//tambahan
		}
	}

function InsertAsset_Flash(inpURL, inpFlashWidth, inpFlashHeight)
	{
	/*inpURL is seen from this.baseEditor (where editor is located), since
	default_Asset is located the same as editor.
	Because of the production is at this.base, the we need to adjust inpURL.
	For example :
	this.baseEditor = "http://localhost/ACE/AdvContentEditor55_StaticFiles/"
	this.base = "http://localhost/ACE/AdvContentEditor55_StaticFiles/Files/Files2/"
	inpURL (APPLIED_LINK) = "files/tes.gif" (seen from this.baseEditor)
		or => http://localhost/ACE/AdvContentEditor55_StaticFiles/files/tes.gif
	OUTPUT of getEditorPreviewPath => "../../images/tes.gif"
	*/
	inpURL = this.getEditorPreviewPath(inpURL);

	var sHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' VIEWASTEXT  width='"+inpFlashWidth+"' height='"+inpFlashHeight+"'>" +
		"<param name=movie value='"+inpURL+"'><param name=quality value=high>" +
		"<embed src='"+inpURL+"' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+inpFlashWidth+"' height='"+inpFlashHeight+"'>" +
		"</embed></object>";

	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	//oSel = fixSel(inpActiveEditor.value,oSel)//a must => tdk perlu => sama dgn kasus InsertAsset_Hyperlink

	if(oSel.parentElement)
		oSel.pasteHTML(sHTML);
	else
		oSel.item(0).outerHTML = sHTML;
	}
function InsertAsset_Video(inpURL)
	{
	inpURL = this.getEditorPreviewPath(inpURL);

	var sHTML = "<embed src='"+inpURL+"' hidden=false autostart='true' type='video/avi' loop='true'></embed>";

	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	//oSel = fixSel(inpActiveEditor.value,oSel)//a must => tdk perlu => sama dgn kasus InsertAsset_Hyperlink

	if(oSel.parentElement)
		oSel.pasteHTML(sHTML);
	else
		oSel.item(0).outerHTML = sHTML;
	}
function InsertAsset_Image(inpURL)
	{
	inpURL = this.getEditorPreviewPath(inpURL);

	var sHTML = "<img src='"+inpURL+"'>";

	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	//oSel = fixSel(inpActiveEditor.value,oSel)//a must => tdk perlu => sama dgn kasus InsertAsset_Hyperlink

	if(oSel.parentElement)
		oSel.pasteHTML(sHTML);
	else
		oSel.item(0).outerHTML = sHTML;
	}
function InsertAsset_Sound(inpURL)
	{
	inpURL = this.getEditorPreviewPath(inpURL);

	var sHTML = "<embed src='"+inpURL+"' hidden=false autostart='true' type='audio/wav' loop='true'></embed>";

	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	//oSel = fixSel(inpActiveEditor.value,oSel)//a must => tdk perlu => sama dgn kasus InsertAsset_Hyperlink

	if(oSel.parentElement)
		oSel.pasteHTML(sHTML);
	else
		oSel.item(0).outerHTML = sHTML;
	}

function InsertCustomHTML(sHTML)
	{
	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	//oSel = fixSel(inpActiveEditor.value,oSel)//a must => tdk perlu => sama dgn kasus InsertAsset_Hyperlink

	if(oSel.parentElement)
		oSel.pasteHTML(sHTML);
	else
		oSel.item(0).outerHTML = sHTML;
	}

/*** B O X ( C U S T O M ) => T A B L E ***/
function boxShow_Table()
	{
	this.boxHide();
	this.saveSelection();
	boxTable2.document.body.document.all.inpActiveEditor.innerText = this.oName;

	boxTable2.document.body.document.all.popup_ContentBorder.style.cssText= this.style_popup_ContentBorder;
	boxTable2.document.body.document.all.popup_BarArea.style.cssText= "width: 100%; height: 20px;padding-left: 5px;" + this.style_popup_BarArea;
	boxTable2.document.body.document.all.popup_BarArea_close.style.cssText= "width: 100%; height: 20px;" + this.style_popup_BarArea;
	boxTable2.document.body.style.cssText= "border:lightgrey 0px solid;" + this.style_popup_Body;

	//Additional
	var divBorderColorPick = boxTable2.document.body.document.all.divBorderColorPick;
	var divBgColorPick = boxTable2.document.body.document.all.divBgColorPick;
	var divBgColor2Pick = boxTable2.document.body.document.all.divBgColor2Pick;
	var divBorderColor2Pick = boxTable2.document.body.document.all.divBorderColor2Pick;
	var divCellBgColorPick = boxTable2.document.body.document.all.divCellBgColorPick;

	//Init Values - For INSERT Tab [#]
	boxTable2.setInpValue("inpRows",1);
	boxTable2.setInpValue("inpCols",2);
	boxTable2.setInpValue("inpWidth",100);
	boxTable2.setInpValue("inpHeight","");
	boxTable2.objColor1.setColor("");//col obj.
	boxTable2.setInpValue("inpBgImage","");
	boxTable2.setInpValue("inpBorder",0);
	boxTable2.objColor2.setColor("");
	boxTable2.document.body.document.all.inpTblAlign.value = "";//dropdown
	boxTable2.setInpValue("inpPadding",0);
	boxTable2.setInpValue("inpSpacing",0);

	var oSel = this.Sel;
	var sType = this.SelType;

	var oBlock = (oSel.parentElement != null ? this.GetElement(oSel.parentElement(),"TABLE") : this.GetElement(oSel.item(0),"TABLE"));

	if (oBlock!=null)//If inside existing table
		{
		//Init Values - For EDIT Tab [##] => Get existing table properties
		boxTable2.document.body.document.all.inpTblAlign2.value = oBlock.align;//dropdown
		var st = oBlock.width;
		if(st.indexOf("%")!=-1)
			{
			boxTable2.setInpValue("inpWidth2",st.substring(0,st.indexOf("%")));//remove last %
			boxTable2.document.body.document.all.inpWidth2Me.value = "%";//dropdown
			}
		else
			{
			boxTable2.setInpValue("inpWidth2",oBlock.width);
			boxTable2.document.body.document.all.inpWidth2Me.value = "";//dropdown		
			}
		var st2 = oBlock.height;
		if(st2.indexOf("%")!=-1)
			{
			boxTable2.setInpValue("inpHeight2",st2.substring(0,st2.indexOf("%")));//remove last %
			boxTable2.document.body.document.all.inpHeight2Me.value = "%";//dropdown
			}
		else
			{
			boxTable2.setInpValue("inpHeight2",oBlock.height);
			boxTable2.document.body.document.all.inpHeight2Me.value = "";//dropdown		
			}
		boxTable2.setInpValue("inpPadding2",oBlock.cellPadding);
		boxTable2.setInpValue("inpSpacing2",oBlock.cellSpacing);
		boxTable2.setInpValue("inpBorder2",oBlock.border);
		boxTable2.objColor4.setColor(oBlock.borderColor);//col obj.(oBlock.borderColor).substring(1)
		boxTable2.setInpValue("inpBgImage2",oBlock.background);
		boxTable2.objColor3.setColor(oBlock.bgColor);

		if(oSel.parentElement != null)//yg dipilih text, bukan control(=table)
			{
			//Init Colors
			divCellBgColorPick.style.display = "none";

			//Init Tabs
			boxTable2.TabEditCell();

			//Init Values - For CELL Tab => Get existing cell properties
			var oTD = GetElement(oSel.parentElement(),"TD");

			if(oTD==null)return; //jika yg di select adl text tapi meliputi lebih dari satu cell

			var st3 = oTD.width; //HTML : width
			if(st3.indexOf("%")!=-1)
				{
				boxTable2.setInpValue("inpCellWidth",st3.substring(0,st3.indexOf("%")));//remove last %
				boxTable2.document.body.document.all.inpCellWidthMe.value = "%";//dropdown		
				}
			else
				{
				boxTable2.setInpValue("inpCellWidth",oTD.width);
				boxTable2.document.body.document.all.inpCellWidthMe.value = "";//dropdown				
				}
			var st4 = oTD.height;//HTML : height
			if(st4.indexOf("%")!=-1)
				{
				boxTable2.setInpValue("inpCellHeight",st4.substring(0,st4.indexOf("%")));//remove last %
				boxTable2.document.body.document.all.inpCellHeightMe.value = "%";//dropdown	
				}
			else
				{
				boxTable2.setInpValue("inpCellHeight",oTD.height);
				boxTable2.document.body.document.all.inpCellHeightMe.value = "";//dropdown				
				}

			boxTable2.document.body.document.all.inpCellAlign.value = oTD.align;//dropdown
			boxTable2.document.body.document.all.inpCellVAlign.value = oTD.vAlign;//dropdown

			boxTable2.setInpValue("inpCellBgImage",oTD.background);//HTML : background
			boxTable2.objColor5.setColor(oTD.bgColor);//HTML : bgColor
			boxTable2.document.body.document.all.inpCellWrap.checked = !oTD.noWrap;
			}
		else
			{
			//Init Colors
			divBgColor2Pick.style.display = "none";
			divBorderColor2Pick.style.display = "none";

			//Init Tabs
			boxTable2.TabEditTable();

			//Init Values - For EDIT Tab
			//Already done [##]
			}
		}
	else
		{
		//Init Colors
		divBorderColorPick.style.display = "none";
		divBgColorPick.style.display = "none";

		//Init Tabs
		boxTable2.TabInsertTable();

		//Init Values - For INSERT Tab
		//Already done [#]
		}	

	this.boxDimension("boxTable2");
	this.boxPosition("boxTable2");

	document.all.boxTable2.style.zIndex = 2;
	document.all.boxTable2.style.visibility = "";
	document.all.boxTable2.focus();
	}
	
function showBorder()
	{
	this.boxHide();

	var oEditor = eval("idContent"+this.oName);
	var oTables = oEditor.document.getElementsByTagName("TABLE");
	
	if(this.IsBorderShow)
		{
		for (i=0;i<oTables.length;i++)
			{ 
			if(oTables[i].border == 0)
				{
				oTables[i].runtimeStyle.borderWidth = "";
				oTables[i].runtimeStyle.borderColor = "";
				oTables[i].runtimeStyle.borderStyle = "";
				oTables[i].runtimeStyle.borderCollapse = "";
				for(j=0;j<oTables[i].getElementsByTagName("TD").length;j++)
					{
					oTables[i].getElementsByTagName("TD")[j].runtimeStyle.borderWidth = "";
					oTables[i].getElementsByTagName("TD")[j].runtimeStyle.borderColor = "";
					oTables[i].getElementsByTagName("TD")[j].runtimeStyle.borderStyle = "";					
					}
				} 
			}		
		this.IsBorderShow = false;
		}
	else
		{
		for (i=0;i<oTables.length;i++)
			{ 
			if(oTables[i].border == 0)
				{
				oTables[i].runtimeStyle.borderWidth = 1; 
				oTables[i].runtimeStyle.borderColor = "#BCBCBC"; 
				oTables[i].runtimeStyle.borderStyle = "dotted";
				oTables[i].runtimeStyle.borderCollapse = "separate";
				for(j=0;j<oTables[i].getElementsByTagName("TD").length;j++)
					oTables[i].getElementsByTagName("TD")[j].runtimeStyle.border = "#BCBCBC 1 dotted"; 
				} 
			}
		this.IsBorderShow = true;
		}
	}	

/*** M I S C.  F U N C T I O N S ***/
function pasteFromWord()
	{
	this.boxHide();

	var oEditor = eval("idContent"+this.oName);
	var oEditorTmp = eval("idContentTmp"+this.oName);
	oEditor.focus();
	var oSel = oEditor.document.selection.createRange();

	if(oSel.parentElement)
		{
		oEditorTmp.focus();
		oEditorTmp.document.execCommand("SelectAll");
		oEditorTmp.document.execCommand("Paste");

		oSel.pasteHTML(this.cleanFromWord());
		}
	}
function cleanFromWord()
	{
	var oEditorTmp = eval("idContentTmp"+this.oName);
	for (var i = 0; i < oEditorTmp.document.body.all.length; i++)
		{
		oEditorTmp.document.body.all[i].removeAttribute("className","",0);
		oEditorTmp.document.body.all[i].removeAttribute("style","",0);
		}
	var sHTML = oEditorTmp.document.body.innerHTML;

	var str = sHTML;

	var arrTmp = str.split('<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />');
	if (arrTmp.length > 1) str = arrTmp.join("");

	var arrTmp = str.split("<o:p>");
	if (arrTmp.length > 1) str = arrTmp.join("");

	var arrTmp = str.split("</o:p>");
	if (arrTmp.length > 1) str = arrTmp.join("");

	var arrTmp = str.split("<o:p>&nbsp;</o:p>");
	if (arrTmp.length > 1) str = arrTmp.join("");

	return  str;
	}
function InsertText()
	{
	this.boxHide();

	var oEditor = eval("idContent"+this.oName);
	oEditor.focus();

	var oSel = oEditor.document.selection.createRange();
	oSel.pasteHTML("<div style='position:absolute;'>Enter text here</div>");
	if (oSel.parentElement)
		{
		oEl = oSel.parentElement();
		if(oEl)oEl.setActive();
		}
	}

function setDisplayMode()
	{
	this.boxHide();
	this.saveSelection();

	var oEditor = eval("idContent"+this.oName);

	if(this.displayMode=='RICH')
		{
		//~~~~~
		var sTmp = this.getContent();
		this.tmp = this.getPageCSSText();
		if(!this.isFullHTML)
			{
			sTmp=sTmp.substr(sTmp.indexOf("<BODY")+1);
			sTmp=sTmp.substr(sTmp.indexOf(">")+1);//">\r\n"

			if(sTmp.substr(0,2)=="\r\n") sTmp=sTmp.substr(2);

			var arrTmp = sTmp.split("</BODY>");
			sTmp = arrTmp[0];
			}

		oEditor.document.body.innerText = sTmp;//this.getContent();
		//~~~~~

		//RED color for additional codes
		var sContent = oEditor.document.body.innerHTML;

		var arrTmp = sContent.split('&lt;LINK href="' + this.getEditorPreviewPath(this.PageStylePath_RelativeTo_EditorPath + this.PageStyle) + '" type=text/css rel=stylesheet&gt;');
		if (arrTmp.length > 1) sContent = arrTmp.join('<br><font color=green>&lt;link href="' + this.getEditorPreviewPath(this.PageStylePath_RelativeTo_EditorPath + this.PageStyle) + '" type=text/css rel=stylesheet&gt;</font>');

		var arrTmp = sContent.split('&lt;LINK href="' + this.getEditorPreviewPath(this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection) + '" type=text/css rel=stylesheet&gt;');
		if (arrTmp.length > 1) sContent = arrTmp.join('<br><font color=green>&lt;link href="' + this.getEditorPreviewPath(this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection) + '" type=text/css rel=stylesheet&gt;</font>');

		oEditor.document.body.innerHTML = sContent;

		//HTML view style
		oEditor.document.body.clearAttributes;
		oEditor.document.body.style.fontFamily = 'Courier New';
		oEditor.document.body.style.fontSize = '13px';
		oEditor.document.body.style.color = 'black';
		oEditor.document.body.style.background = 'white';

		//change status (displayMode)
		this.displayMode = 'HTML';
		eval("idToolbar"+this.oName).style.display = "none";
		}
	else
		{
		this.putContent(oEditor.document.body.innerText);

		//~~~~~~~~~~~~~~~~~~
		if(!this.isFullHTML)
			{
			this.setPageCSSText(this.tmp);		
			}
		//~~~~~~~~~~~~~~~~~~

		//change status (displayMode)
		this.displayMode = 'RICH';
		eval("idToolbar"+this.oName).style.display = "block";

		document.body.focus();
		}
	}

function GetElement(oElement,sMatchTag)
	{
	while (oElement!=null && oElement.tagName!=sMatchTag)
		{
		if(oElement.id=="idContent"+this.oName) return null;
		oElement = oElement.parentElement;
		}
	return oElement;
	}

function doOnKeyPress()
	{
	var oName = oUtil.oName;
	var oEditor = eval("idContent"+oName);
	if(document.getElementById("chkBreakMode"+oName).checked)
		{
		if (oEditor.event.keyCode==13)
			{
			if (oEditor.event.shiftKey==false)
				{
				var oSel = oEditor.document.selection.createRange();	
				oSel.pasteHTML('<br>');
				oEditor.event.cancelBubble = true;
				oEditor.event.returnValue = false;
				oSel.select();
				oSel.moveEnd("character", 1);
				oSel.moveStart("character", 1);
				oSel.collapse(false);
				return false;
				}
			else
				return event.keyCode=13;
			}
		}
	}

/*** G E T & P U T  C O N T E N T ***/
function getContentBody()
	{
	var sTmp = this.getContent();
	if(!this.isFullHTML)
		{
		sTmp=sTmp.substr(sTmp.indexOf("<BODY")+1);
		sTmp=sTmp.substr(sTmp.indexOf(">")+1);//">\r\n"
		var arrTmp = sTmp.split("</BODY>");
		sTmp = arrTmp[0];
		}
	return sTmp;
	}
function getContent()
	{
	if(this.displayMode != "RICH")
		{
		alert("Please uncheck HTML view");
		return;
		}

	var oEditor = eval("idContent"+this.oName);
	var oEditorTmp = eval("idContentTmp"+this.oName);

	var oDoc = oEditorTmp.document.open("text/html", "replace");
	oDoc.write(oEditor.document.documentElement.outerHTML);
	oDoc.close();

	//REMOVE UNUSED
	oEditorTmp.document.body.style.border = "";
	oEditorTmp.document.body.removeAttribute("contentEditable",0);

	//~~~ ANCHOR ~~~
	for(var i=0;i<oEditorTmp.document.all.length;i++)
		{
		if(oEditorTmp.document.all[i].tagName=="A")
			{
			for(var j=0;j<oEditorTmp.document.all[i].childNodes.length;j++)
				{
				if(oEditorTmp.document.all[i].childNodes[j].tagName=="IMG")
					{
					sSrc = oEditorTmp.document.all[i].childNodes[j].src;
					if(sSrc.indexOf("yusasp_anchor.gif")!=-1)
						oEditorTmp.document.all[i].removeChild(oEditorTmp.document.all[i].childNodes[j]);
					}
				}
			}
		}
	//~~~

	var str = oEditorTmp.document.documentElement.outerHTML;

	var arrTmp = str.split("<BASE href="+this.base+">");
	if (arrTmp.length > 1) str = arrTmp.join("");
	
	var arrTmp = str.split('<PARAM NAME="Play" VALUE="0">');
	if (arrTmp.length > 1) str = arrTmp.join('<PARAM NAME="Play" VALUE="-1">');		

	str = str.replace("<STYLE><\/STYLE>","");
	str = str.replace("BORDER-RIGHT: medium none; ","");
	str = str.replace("BORDER-TOP: medium none; ","");
	str = str.replace("BORDER-BOTTOM: medium none; ","");
	str = str.replace("BORDER-LEFT: medium none; ","");
	str = str.replace("BORDER-RIGHT: medium none","");
	str = str.replace("BORDER-TOP: medium none","");
	str = str.replace("BORDER-BOTTOM: medium none","");
	str = str.replace("BORDER-LEFT: medium none","");
	str = str.replace(" style=\"\"","");

	//Fix & Bug
	myregexp = /&amp;/g;
	str = str.replace(myregexp,"&");

	return str;
	}

function putContent(sContent)
	{
	var oEditor = eval("idContent"+this.oName);
	var oEditorTmp = eval("idContentTmp"+this.oName);

	//LOAD CONTENT ***/
	var oDoc = oEditorTmp.document.open("text/html", "replace");
	oDoc.write(sContent);
	oDoc.close();

	var oDoc = oEditor.document.open("text/html", "replace");
	if(this.base!="")
		oDoc.write("<BASE HREF=\""+this.base+"\"/>" + oEditorTmp.document.documentElement.outerHTML);
	else
		oDoc.write(oEditorTmp.document.documentElement.outerHTML);
	oDoc.close();

	//set Title to the "Page Properties" dialog
	if(this.usePageProperties)
		boxPage.document.all["inpTitle"].innerText = this.getTitle();

	if(this.PageStyle!="")
		{
		//Apply external css to the document, if there is no existing..
		sHREF = this.getEditorPreviewPath(this.PageStylePath_RelativeTo_EditorPath + this.PageStyle);
		var bPageStyleExist = false;
		for(var i=0;i<oEditor.document.styleSheets.length;i++)
			{
			if(oEditor.document.styleSheets(i).href==sHREF)
				bPageStyleExist = true;
			}
		if(bPageStyleExist==false)
			{
			oElement = oEditor.document.createElement("<link rel='stylesheet' href='" + this.getEditorPreviewPath(this.PageStylePath_RelativeTo_EditorPath + this.PageStyle) + "' type='text/css'>");
			var oEl = oEditor.document.childNodes[0].childNodes[0].appendChild(oElement);
			}
		}

	if(this.useStyle)
		{
		// Apply external css for Style Selection, if there is no existing..
		sHREF = this.getEditorPreviewPath(this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection);
		var bStyleSelExist = false;
		for(var i=0;i<oEditor.document.styleSheets.length;i++)
			{
			if(oEditor.document.styleSheets(i).href==sHREF)
				bStyleSelExist = true;
			}
		if(bStyleSelExist==false)
			{
			oElement = oEditor.document.createElement("<link rel='stylesheet' href='" + this.getEditorPreviewPath(this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection) + "' type='text/css'>");
			var oEl = oEditor.document.childNodes[0].childNodes[0].appendChild(oElement);
			}
		}

	//Additional ***/
	oEditor.document.body.style.border = this.style_editor_Border;
	oEditor.document.body.contentEditable = true;
	oEditor.document.body.oncontextmenu = retFalse;

	//ADDITIONAL SETTINGS ***/
	oEditor.document.execCommand("2D-Position", true, true);
	oEditor.document.execCommand("MultipleSelection", true, true);
	oEditor.document.execCommand("LiveResize", true, true);
	oEditor.document.onkeypress = doOnKeyPress;

	//~~~ ANCHOR ~~~
	for(var i=0;i<oEditor.document.all.length;i++)
		{
		if(oEditor.document.all[i].tagName=="A")
			{
			if(oEditor.document.all[i].name!="")
				oEditor.document.all[i].innerHTML = "<IMG src='include/yusasp_anchor.gif' align=middle border=0>" + oEditor.document.all[i].innerHTML;
			}
		}
	//~~~~~~~~~~~~~
	}

function getTitle()
	{
	var oEditor = eval("idContent"+this.oName);
	return oEditor.document.title;
	}

function setTitle(sTitle)
	{
	var oEditor = eval("idContent"+this.oName);
	oEditor.document.title = sTitle;
	}

/*** D O  C O M M A N D ***/
function doCmd(sCmd,sOption)
	{
	this.boxHide();

	var oEditor = eval("idContent"+this.oName);
	var oSel = oEditor.document.selection.createRange();
	var sType = oEditor.document.selection.type;

	var oName = this.oName;//fail kalo pake oUtil.oName, krn ada delay..mesti tunggu

	//a must
	oSel = fixSel(oName,oSel);
	sType = fixSelType(oName,oSel,sType);

	var oTarget = (sType == "None" ? oEditor.document : oSel);
	oTarget.execCommand(sCmd, false, sOption);
	}
function doCmd2(sCmd,sOption)//For BOX
	{
	this.boxHide();

	var oEditor = eval("idContent"+this.oName);
	var oSel = this.Sel;
	var sType = this.SelType;

	var oName = this.oName;

	//a must
	oSel = fixSel(oName,oSel);
	sType = fixSelType(oName,oSel,sType);

	var oTarget = (sType == "None" ? oEditor.document : oSel);
	oSel.select();//tambahan
	oTarget.execCommand(sCmd, false, sOption);
	}

/*** I N D E P E N D E N T (a must) ***/
function fixSel(oName,oSel)//oName=string, oSel=object
	{
	var oEditor = eval("idContent"+oName);

	if(oSel.parentElement != null)
		{
		if(!IsInsideEditor(oSel.parentElement()))
			{
			oEditor.focus();
			var oSel = oEditor.document.selection.createRange();
			}
		}
	else
		{
		if(!IsInsideEditor(oSel.item(0)))
			{
			oEditor.focus();
			var oSel = oEditor.document.selection.createRange();
			}
		}
	return oSel;
	}
function fixSelType(oName,oSel,sType)//oName=string, oSel=object
	{
	var oEditor = eval("idContent"+oName);
	if(oSel.parentElement != null)
		{
		if(!IsInsideEditor(oSel.parentElement()))
			{
			oEditor.focus();
			var sType = oEditor.document.selection.type;
			}
		}
	else
		{
		if(!IsInsideEditor(oSel.item(0)))
			{
			oEditor.focus();
			var sType = oEditor.document.selection.type;
			}
		}
	return sType;
	}
function IsInsideEditor(oElement)
	{
	while (oElement!=null)
		{
		if(oElement.tagName=="BODY" && oElement.contentEditable=="true")return true;
		oElement = oElement.parentElement;
		}
	return false;
	}
function retFalse()
	{
	return false;
	}

/*** S T Y L E  S E L E C T I O N ***/
function LoadStyleSelection()
	{
	sHTML = "<head><link rel='stylesheet' href='"+ this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection+"' type='text/css'>" +
			"</head><body onload='parent."+this.oName+".WriteStyleSelection()'></body>";
	eval("boxStyleTmp"+this.oName).document.open("text/html","replace");
	eval("boxStyleTmp"+this.oName).document.write(sHTML);
	eval("boxStyleTmp"+this.oName).document.close();
	}
function WriteStyleSelection()
	{
	sHTML = "<link rel='stylesheet' href='"+ this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection+"' type='text/css'>" +	boxDrawDrop(150,this.writeStyle());
	eval("boxStyle"+this.oName).document.open("text/html","replace");
	eval("boxStyle"+this.oName).document.write(sHTML);
	eval("boxStyle"+this.oName).document.close();
	}
function writeStyle()
	{
	var val;
	var sHTML = "";
	sHTML += "<table align=center border=0 width=100% height=100% cellpadding=0 cellspacing=0>" +
			"<tr><td height=3></td></tr>";
	var oEditor = eval("boxStyleTmp"+this.oName);
	for(var i=0;i<oEditor.document.styleSheets(0).rules.length;i++)
		{
		h=oEditor.document.styleSheets(0).rules.item(i).selectorText;
		var selArr = h.split(".");
		var itemCount = selArr.length;
		if(itemCount>1) {val = selArr[1]}
		else {val = h}
		sHTML += "<tr><td onclick=\"parent."+this.oName+".applyStyle('"+val+"');\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:18'><span class=\""+val+"\">" + val + "</span></td></tr>";
		}
	sHTML += "<tr><td height=3></td></tr>";
	sHTML += "</table>";
	return sHTML;
	}
function applyStyle(val)
	{
	var oSel = eval(eval("boxStyle"+this.oName).document.body.document.all.inpActiveEditor.value).Sel;
	var sType = eval(eval("boxStyle"+this.oName).document.body.document.all.inpActiveEditor.value).SelType;
	
	for(var i=0;i<parent.frames.length;i++)
		{
		if(parent.frames(i).name == window.name)
			{
			//~~~ frame ~~~
			eval(eval("parent.frames."+ window.name + ".boxStyle"+this.oName).document.body.document.all.inpActiveEditor.value+".doCmd2('fontname','')");
			if (oSel.parentElement)
					{
					oEl = GetElement(oSel.parentElement(),"FONT");
					if(oEl)oEl.className = val;
					}
			//~~~
			return;
			}
		}
	//~~~ nonframe (popup or not) ~~~
	eval(eval("parent.boxStyle"+this.oName).document.body.document.all.inpActiveEditor.value+".doCmd2('fontname','')");
	if (oSel.parentElement)
			{
			oEl = GetElement(oSel.parentElement(),"FONT");
			if(oEl)oEl.className = val;
			}
	//~~~
	}

/*** T O O L B A R   F U N C T I O N S ***/
function drawIcon(block,nTop,width,id,title,command,isToggle)
	{
	document.write("<span unselectable='on' id='span_"+id+"' style=\"margin-left:2;margin-right:0;margin-bottom:3;width: "+width+";height:26;\"><span unselectable='on' style=\"position:absolute;clip: rect(0 "+width+" 26 0)\">");
	switch(block)
		{
		case 1:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon1.gif\" style=\"position:absolute;top:-"+nTop+";width:58\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 2:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon2.gif\" style=\"position:absolute;top:-"+nTop+";width:75\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 3:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon3.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 4:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon4.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 5:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon5.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 6:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon6.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 7:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon7.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 8:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon8.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 9:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon9.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 10:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon10.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		case 11:
			document.write("<img unselectable='on' id='"+id+"' btntoggle='"+isToggle+"' title=\""+title+"\" src=\""+ this.iconFolder +"icon11.gif\" style=\"position:absolute;top:-"+nTop+";width:27\" onmousedown=\"button_down(this,"+nTop+")\" onmouseup=\"button_up(this,"+nTop+");"+command+"\">");
			break;
		}
	document.write("</span></span>");
	}
function button_up(eButton, nTop)
	{
	eButton.style.top = -nTop;
	}
function button_down(eButton, nTop)
	{
	eButton.style.top = -nTop - 26;
	}

/*** E D I T O R   C L A S S ***/
function RUN()
	{
	oName = this.oName;
	obj = eval(oName);
	if(this.base=="") this.base = this.baseEditor;

	//PREPARE ICONS ***/
	document.write("<IMG SRC='" +this.iconFolder+ "icon1.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon2.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon3.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon4.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon5.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon6.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon7.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon8.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon9.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon10.gif' width=1 height=1 style='display:none'>");
	document.write("<IMG SRC='" +this.iconFolder+ "icon11.gif' width=1 height=1 style='display:none'>");

	document.write("<table width='"+this.width+"' height='"+this.height+"' border=0 cellpadding=0 cellspacing=0><tr><td>")
	
	//PREPARE TOOLBAR ***/
	document.write("<table style='display:none' id='idToolbar"+oName+"' cellpadding=0 cellspacing=0 border=0 width='100%' valign=bottom style=\""+this.style_editor_Toolbar+"\"><tr><td height=4></td></tr><tr><td>");
	
	if(this.useSave)obj.drawIcon(1,0,27,"btnSave"+oName,"Save",oName+".onSave()",false);
	if(this.usePrint)obj.drawIcon(1,52,27,"btnPrint"+oName,"Print",oName+".doCmd('Print')",false);
	if(this.useZoom)obj.drawIcon(1,104,36,"btnZoom"+oName,"Zoom",oName+".boxShowDrop('boxZoom');setPosition(this,'boxZoom')",false);
	if(this.useStyle)obj.drawIcon(1,156,58,"btnStyle"+oName,"Style",oName+".boxShowDrop('boxStyle"+oName+"');setPosition(this,'boxStyle"+oName+"')",false);
	
	if(this.useParagraph)obj.drawIcon(2,0,75,"btnParagraph"+oName,"Paragraph",oName+".boxShowDrop('boxParagraph');setPosition(this,'boxParagraph')",false);
	if(this.useFontName)obj.drawIcon(2,52,75,"btnFontName"+oName,"Font Name",oName+".boxShowDrop('boxFont');setPosition(this,'boxFont')",false);
	if(this.useSize)obj.drawIcon(2,104,55,"btnSize"+oName,"Size",oName+".boxShowDrop('boxSize');setPosition(this,'boxSize')",false);
	if(this.useText)obj.drawIcon(2,156,27,"btnText"+oName,"Text",oName+".InsertText()",false);

	if(this.useSelectAll)obj.drawIcon(3,0,27,"btnSelectAll"+oName,"Select All",oName+".doCmd('SelectAll')",false);
	if(this.useCut)obj.drawIcon(3,52,27,"btnCut"+oName,"Cut",oName+".doCmd('Cut')",false);
	if(this.useCopy)obj.drawIcon(3,104,27,"btnCopy"+oName,"Copy",oName+".doCmd('Copy')",false);
	if(this.usePaste)obj.drawIcon(3,156,27,"btnPaste"+oName,"Paste",oName+".doCmd('Paste')",false);
	
	if(this.useUndo)obj.drawIcon(4,0,27,"btnUndo"+oName,"Undo",oName+".doCmd('Undo')",false);
	if(this.useRedo)obj.drawIcon(4,52,27,"btnRedo"+oName,"Redo",oName+".doCmd('Redo')",false);
	if(this.useBold)obj.drawIcon(4,104,27,"btnBold"+oName,"Bold",oName+".doCmd('Bold')",false);
	if(this.useItalic)obj.drawIcon(4,156,27,"btnItalic"+oName,"Italic",oName+".doCmd('Italic')",false);

	if(this.useUnderline)obj.drawIcon(5,0,27,"btnUnderline"+oName,"Underline",oName+".doCmd('Underline')",false);
	if(this.useStrikethrough)obj.drawIcon(5,52,27,"btnStrikethrough"+oName,"Strikethrough",oName+".doCmd('Strikethrough')",false);
	if(this.useSuperscript)obj.drawIcon(5,104,27,"btnSuperscript"+oName,"Superscript",oName+".doCmd('Superscript')",false);
	if(this.useSubscript)obj.drawIcon(5,156,27,"btnSubscript"+oName,"Subscript",oName+".doCmd('Subscript')",false);
	
	if(this.useSymbol)obj.drawIcon(6,0,27,"btnSymbol"+oName,"Symbol",oName+".boxShowPop('boxSymbol')",false);
	if(this.useJustifyLeft)obj.drawIcon(6,52,27,"btnJustifyLeft"+oName,"Justify Left",oName+".doCmd('JustifyLeft')",false);
	if(this.useJustifyCenter)obj.drawIcon(6,104,27,"btnJustifyCenter"+oName,"Justify Center",oName+".doCmd('JustifyCenter')",false);
	if(this.useJustifyRight)obj.drawIcon(6,156,27,"btnJustifyRight"+oName,"Justify Right",oName+".doCmd('JustifyRight')",false);

	if(this.useJustifyFull)obj.drawIcon(7,0,27,"btnJustifyFull"+oName,"Justify Full",oName+".doCmd('JustifyFull')",false);
	if(this.useNumbering)obj.drawIcon(7,52,27,"btnNumbering"+oName,"Numbering",oName+".doCmd('InsertOrderedList')",false);
	if(this.useBullets)obj.drawIcon(7,104,27,"btnBullets"+oName,"Bullets",oName+".doCmd('InsertUnorderedList')",false);
	if(this.useIndent)obj.drawIcon(7,156,27,"btnIndent"+oName,"Indent",oName+".doCmd('Indent')",false);
	
	if(this.useOutdent)obj.drawIcon(8,0,27,"btnOutdent"+oName,"Outdent",oName+".doCmd('Outdent')",false);
	if(this.useImage)obj.drawIcon(8,52,27,"btnImage"+oName,"Image",oName+".boxShow_Image()",false);
	if(this.useForeColor)obj.drawIcon(8,104,27,"btnForeColor"+oName,"Foreground Color",oName+".boxShowPop('boxForecolor')",false);
	if(this.useBackColor)obj.drawIcon(8,156,27,"btnBackColor"+oName,"Background Color",oName+".boxShowPop('boxBackcolor')",false);

	if(this.useExternalLink)obj.drawIcon(9,0,27,"btnExternalLink"+oName,"External Link",oName+".boxShow_ExternalLink()",false);
	if(this.useInternalLink)obj.drawIcon(9,52,27,"btnInternalLink"+oName,"Internal Link",oName+".boxShow_InternalLink()",false);
	if(this.useAsset)obj.drawIcon(9,104,27,"btnAsset"+oName,"Asset",oName+".boxShow_Asset()",false);
	if(this.useTable)obj.drawIcon(9,156,27,"btnTable"+oName,"Table",oName+".boxShow_Table()",false);
	
	if(this.useShowBorder)obj.drawIcon(10,0,27,"btnShowBorder"+oName,"Show Border",oName+".showBorder()",false);
	if(this.useAbsolute)obj.drawIcon(10,52,27,"btnAbsolute"+oName,"Absolute",oName+".doCmd('AbsolutePosition')",false);//IE5.5 or later
	if(this.useClean)obj.drawIcon(10,104,27,"btnClean"+oName,"Clean",oName+".doCmd('RemoveFormat')",false);
	if(this.useLine)obj.drawIcon(10,156,27,"btnLine"+oName,"Line",oName+".doCmd('InsertHorizontalRule')",false);
	
	if(this.usePageProperties)obj.drawIcon(11,0,27,"btnPageProperties"+oName,"Page Properties",oName+".boxShow_Page()",false);
	if(this.useWord)obj.drawIcon(11,52,27,"btnWord"+oName,"Paste From Word",oName+".pasteFromWord()",false);
	
	document.write("</td></tr>")
	document.write("</table>");
	
	document.write("</td></tr><tr><td height=100%>")

	//PREPARE EDITOR ***/
	document.write("	<table name='idArea"+oName+"' id='idArea"+oName+"' width=100% height=100% cellpadding=0 cellspacing=0>");
	document.write("	<tr><td>");
	document.write("	<iframe style=\"width:1;height:1;\" name='idContent"+oName+"' contentEditable=true id='idContent"+oName+"' noborder onfocus=\""+oName+".boxHide();oUtil.oName='"+oName+"'\"></iframe>");
	document.write("	</td></tr>");
	document.write("	</table>");

	document.write("</td></tr><tr><td>")
	
	//PREPARE EDITOR FOOTER ***/
	document.write("	<input type=checkbox onclick='"+oName+".setDisplayMode()' id=chkDisplayMode name=chkDisplayMode><font face=verdana size=1> HTML &nbsp;</font>");
	document.write("	<input type='checkbox' id=chkBreakMode"+oName+" name=chkBreakMode"+oName+"><font face=verdana size=1> BR &nbsp;</font>");

	document.write("</td></tr></table>")

	var oEditor = eval("idContent"+oName);
	IEver=0;
	if (navigator.appVersion.indexOf("MSIE")!=-1) IEver=parseFloat(navigator.appVersion.split("MSIE")[1]);
	if (IEver<5.5) oEditor.document.designMode = "on";//spy jln di IE50 tapi gak bisa insert object

	//LOAD PREBUILT CONTENT ***/
	var oDoc = oEditor.document.open("text/html", "replace");
	if(this.base!="")
		oDoc.write("<BASE HREF=\""+this.base+"\"/>"+this.prebuiltHTML);
	else
		oDoc.write(this.prebuiltHTML);
	oDoc.close();


	if(this.PageStyle!="")
		{
		//apply external css to the document
		oElement = oEditor.document.createElement("<link rel='stylesheet' href='" + this.getEditorPreviewPath(this.PageStylePath_RelativeTo_EditorPath + this.PageStyle) + "' type='text/css'>");
		var oEl = oEditor.document.childNodes[0].childNodes[0].appendChild(oElement);
		}

	//PREPARE STYLE SELECTION ***/
	if(this.useStyle)//boxStyle
		{
		//Apply external css for Style Selection to the document
		oElement = oEditor.document.createElement("<link rel='stylesheet' href='" + this.getEditorPreviewPath(this.StyleSelectionPath_RelativeTo_EditorPath + this.StyleSelection) + "' type='text/css'>");
		var oEl = oEditor.document.childNodes[0].childNodes[0].appendChild(oElement);

		//Draw style selection
		document.write("<iframe id=boxStyle"+oName+" name=boxStyle"+oName+" style='position: absolute; visibility: hidden;z-index: -1;width:1;height:1;'></iframe>");
		document.write("<iframe id=boxStyleTmp"+oName+" name=boxStyleTmp"+oName+" style='position: absolute; visibility: hidden;z-index: -1;width:1;height:1;'></iframe>");
		this.LoadStyleSelection();//(HARUS JALAN DI IE5.0)
		}

	//ADDITIONAL STYLES (Remove on getContent) ***/
	oEditor.document.body.style.border = this.style_editor_Border;
	oEditor.document.body.contentEditable = true;
	oEditor.document.body.oncontextmenu = retFalse;

	//ADDITIONAL SETTINGS ***/
	oEditor.document.execCommand("2D-Position", true, true);
	oEditor.document.execCommand("MultipleSelection", true, true);
	oEditor.document.execCommand("LiveResize", true, true);
	oEditor.document.onkeypress = doOnKeyPress;

	//ENABLE/SHOW EDITOR ***/
	eval("document.all.idContent"+this.oName).style.width = "100%";
	eval("document.all.idContent"+this.oName).style.height = "100%";
	eval("document.all.idToolbar"+this.oName).style.display="block";

	//PREPARE TEMP AREA ***/
	document.write("<iframe name='idContentTmp"+oName+"' contentEditable=true id='idContentTmp"+oName+"' style='width:1;height:1;overflow:auto;' noborder onfocus='"+oName+".boxHide()'></iframe>");
	var oEditor2 = eval("idContentTmp"+oName);
	oEditor2.document.designMode = "on";
	oEditor2.document.open("text/html","replace");
	oEditor2.document.write("<html><head></head><body><div></div></body></html>");
	oEditor2.document.close();

	/*** S H A R E D  B O X ***/
	if(this.useZoom && !document.getElementById("boxZoom"))//boxZoom
		{
		sHTML = "<table align=center border=0 width=100% height=100% cellpadding=0 cellspacing=0>" +
			"<tr><td height=3></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('500%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>500%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('200%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>200%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('150%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>150%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('125%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>125%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('100%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>100%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('90%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>90%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('85%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>85%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('80%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>80%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('75%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>75%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('50%')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>50%</font></td></tr>" +
			"<tr><td onclick=\"parent.applyZoom('25%')\" align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>25%</font></td></tr>" +
			"<tr><td height=3></td></tr>" +
			"</table>";
		sHTML = boxDrawDrop(50,sHTML);
		document.write("<iframe id=boxZoom name=boxZoom style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxZoom.document.open("text/html","replace");
		boxZoom.document.write(sHTML);
		boxZoom.document.close();
		}

	if(this.useParagraph && !document.getElementById("boxParagraph"))//boxParagraph
		{
		sHTML = "<table align=center border=0 width=100% height=100% cellpadding=0 cellspacing=0>" +
			"<tr><td height=3></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H1>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:45'><h1 style='margin:0'>Header 1</h1></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H2>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:40'><h2 style='margin:0'>Header 2</h2></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H3>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:35'><h3 style='margin:0'>Header 3</h3></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H4>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:30'><h4 style='margin:0'>Header 4</h4></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H5>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:25'><h5 style='margin:0'>Header 5</h5></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<H6>')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><h6 style='margin:0'>Header 6</h6></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<PRE>')\" align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><pre style='margin:0'>Preformatted</pre></td></tr>" +
			"<tr><td onclick=\"parent.applyPara('<P>')\"   align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><p style='margin:0'>Normal</p></td></tr>" +
			"<tr><td height=3></td></tr>" +
			"</table>";
		sHTML = boxDrawDrop(200,sHTML);
		document.write("<iframe id=boxParagraph name=boxParagraph style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxParagraph.document.open("text/html","replace");
		boxParagraph.document.write(sHTML);
		boxParagraph.document.close();
		}

	if(this.useFontName && !document.getElementById("boxFont"))//boxFont
		{
		sHTML = "<table align=center border=0 width=100% height=100% cellpadding=0 cellspacing=0>" +
			"<tr><td height=3></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Arial')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Arial' size=1>Arial</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Arial Black')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Arial Black' size=1>Arial Black</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Arial Narrow')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Arial Narrow' size=1>Arial Narrow</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Comic Sans MS')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Comic Sans MS' size=1>Comic Sans MS</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Courier New')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Courier New' size=1>Courier New</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('System')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:19'><font face='System' size=1>System</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Tahoma')\" align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Tahoma' size=1>Tahoma</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Times New Roman')\"   align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Times New Roman' size=1>Times New Roman</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Verdana')\" align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Verdana' size=1>Verdana</font></td></tr>" +
			"<tr><td onclick=\"parent.applyFont('Wingdings')\"   align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:17'><font face='Wingdings' size=1>Wingdings</font></td></tr>" +
			"<tr><td height=3></td></tr>" +
			"</table>";
		sHTML = boxDrawDrop(150,sHTML);
		document.write("<iframe id=boxFont name=boxFont style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxFont.document.open("text/html","replace");
		boxFont.document.write(sHTML);
		boxFont.document.close();
		}

	if(this.useSize && !document.getElementById("boxSize"))//boxSize
		{
		sHTML = "<table align=center border=0 width=100% height=100% cellpadding=0 cellspacing=0>" +
			"<tr><td height=3></td></tr>" +
			"<tr><td onclick=\"parent.applySize('1')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=1>Size 1</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('2')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:20'><font size=2>Size 2</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('3')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:22'><font size=3>Size 3</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('4')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:27'><font size=4>Size 4</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('5')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:33'><font size=5>Size 5</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('6')\"  align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:40'><font size=6>Size 6</font></td></tr>" +
			"<tr><td onclick=\"parent.applySize('7')\" align=center onmouseover='parent."+this.oName+".selOver(this)' onmouseout='parent."+this.oName+".selOut(this)' class=dropdown style='height:65'><font size=7>Size 7</font></td></tr>" +
			"<tr><td height=3></td></tr>" +
			"</table>";
		sHTML = boxDrawDrop(200,sHTML);
		document.write("<iframe id=boxSize name=boxSize style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxSize.document.open("text/html","replace");
		boxSize.document.write(sHTML);
		boxSize.document.close();
		}

	if(this.useForeColor && !document.getElementById("boxForecolor"))//boxForecolor
		{
		var objColor1 = new YusASPColor("objColor1");
		sHTML = objColor1.drawColor +
			"<table border=0 width=365 align=center cellpadding=0 cellspacing=0>" +
			"<tr>" +
			"<td align=right width=50%><INPUT type='button' onclick=\"eval('parent.'+inpActiveEditor.value).boxHide()\"  value='Cancel'></td>" +
			"<td width=50%><INPUT type='button' onclick=\"parent.applyForecolor(parent.boxForecolor.document.body.document.all."+objColor1.getElementColorText+".value)\" value='&nbsp;&nbsp;OK&nbsp;&nbsp;'></td>" +
			"</tr></table>";
		sHTML = boxDrawPop(390,"Forecolor",sHTML);
		document.write("<iframe id=boxForecolor name=boxForecolor style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxForecolor.document.open("text/html","replace");
		boxForecolor.document.write(sHTML);
		boxForecolor.document.close();
		}

	if(this.useBackColor && !document.getElementById("boxBackcolor"))//boxBackcolor
		{
		var objColor2 = new YusASPColor("objColor2");
		sHTML = objColor2.drawColor +
			"<table border=0 width=365 align=center cellpadding=0 cellspacing=0>" +
			"<tr>" +
			"<td align=right width=50%><INPUT type='button' onclick=\"eval('parent.'+inpActiveEditor.value).boxHide()\"  value='Cancel'></td>" +
			"<td width=50%><INPUT type='button' onclick=\"parent.applyBackcolor(parent.boxBackcolor.document.body.document.all."+objColor2.getElementColorText+".value)\" value='&nbsp;&nbsp;OK&nbsp;&nbsp;'></td>" +
			"</tr></table>";
		sHTML = boxDrawPop(390,"Backcolor",sHTML);
		document.write("<iframe id=boxBackcolor name=boxBackcolor style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxBackcolor.document.open("text/html","replace");
		boxBackcolor.document.write(sHTML);
		boxBackcolor.document.close();
		}

	if(this.useExternalLink && !document.getElementById("boxLink"))//boxLink
		{
		sHTML = "<table cellpadding=0 cellspacing=3 align=center>" +
			"<tr>" +
			"<td>" +
			"		&nbsp;" +
			"		<select id=idLinkType NAME=idLinkType>" +
			"		<option value='' selected></option>" +
			"		<option value='http://' selected>http://</option>" +
			"		<option value='https://'>https://</option>" +
			"		<option value='mailto:'>mailto:</option>" +
			"		<option value='ftp://'>ftp://</option>" +
			"		<option value='news:'>news:</option>" +
			"		</select>" +
			"		<input type=text size=30 id=idLinkURL value='' style='height: 19px;font:8pt verdana,arial,sans-serif' NAME=idLinkURL contentEditable=true>" +
			"</td>" +
			"</tr>" +
			"<tr>" +
			"<td>" +
			"		<table cellpadding=0 cellspacing=0 style='TABLE-LAYOUT: fixed'>" +
			"		<col width=100><col width=220>" +
			"		<tr><td>" +
			"			&nbsp;&nbsp;Target:" +
			"		</td><td>" +
			"			<select id=idLinkTarget NAME=idLinkTarget>" +
			"			<option value='' selected></option>" +
			"			<option value='_self' selected>self</option>" +
			"			<option value='_blank'>blank</option>" +
			"			<option value='_parent'>parent</option>" +
			"			</select>" +
			"		</td></tr>" +
			"		<tr id=idLinkImage style='display:none'><td>" +
			"			&nbsp;&nbsp;Image Border:" +
			"		</td><td>" +
			"			<select id=idLinkImageBorder NAME=idLinkImageBorder>" +
			"			<option value=0 selected>0</option>" +
			"			<option value=1>1</option>" +
			"			<option value=2>2</option>" +
			"			<option value=3>3</option>" +
			"			<option value=4>4</option>" +
			"			<option value=5>5</option>" +
			"			</select>" +
			"		</td></tr>" +
			"		<tr>" +
			"		<td>" +
			"			&nbsp;&nbsp;Name:" +
			"		</td><td>" +
			"			<input type=text size=30 id=idLinkName value='' style='height: 19px;font:8pt verdana,arial,sans-serif' NAME=idLinkName contentEditable=true>" +
			"		</td>" +
			"		</tr>" +
			"		</table>" +
			"</td>" +
			"</tr>" +
			"<tr>" +
			"<td align=center><br>" +
			"		<table cellpadding=0 cellspacing=0><tr>" +
			"		<td>" +
			"		<input type=button value=Cancel onclick=\"eval('parent.'+inpActiveEditor.value).boxHide()\" style='height: 22px;font:8pt verdana,arial,sans-serif'>" +
			"		</td>" +
			"		<td>" +
			"		<input type=button id=btnLinkInsert name=btnLinkInsert value=Insert onclick='parent.applyLink()' style='display:none;height: 22px;font:8pt verdana,arial,sans-serif'>" +
			"		<input type=button id=btnLinkUpdate name=btnLinkUpdate value=Update onclick='parent.applyLink()' style='display:none;height: 22px;font:8pt verdana,arial,sans-serif'>" +
			"		</td>" +
			"		</tr></table>" +
			"		</td>" +
			"</tr>" +
			"</table>";
		sHTML = boxDrawPop(310,"Hyperlink",sHTML);
		document.write("<iframe id=boxLink name=boxLink style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		boxLink.document.open("text/html","replace");
		boxLink.document.write(sHTML);
		boxLink.document.close();
		}

	if(this.usePageProperties && !document.getElementById("boxPage"))//boxPage
		{
		document.write("<iframe id=boxPage name=boxPage src='include/box_Page.htm' style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		}

	if(this.useTable && !document.getElementById("boxTable2"))//boxTable
		{
		document.write("<iframe id=boxTable2 name=boxTable2 src='include/box_Table.htm' style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		}

	if(this.useSymbol && !document.getElementById("boxSymbol"))//boxSymbol
		{
		document.write("<iframe id=boxSymbol name=boxSymbol src='include/box_Symbol.htm' style='position: absolute; visibility: hidden; z-index: -1;width:1;height:1;'></iframe>");
		}
	}

function ACEditor(oName)
	{
	//Editor Look & Style
	this.width = "100%";
	this.height = "70%";

	this.drawIcon = drawIcon;
	this.iconFolder = "include/default/";

	this.style_editor_Border = "1px #c3c3c3 solid";
	this.style_editor_Toolbar = "border-left:#d9d9d9 1 solid;border-top:#d9d9d9 1 solid;border-right:#e0e0e0 1 solid;background:#efeff7;";

	this.style_popup_ContentBorder = "border-left: #336699 1px solid;border-right: #336699 1px solid;border-bottom: #336699 1px solid;";
	this.style_popup_BarArea =	"background: #004684;" +
								"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#004684,endColorstr=#7189b7);" +
								"border-top: #99ccff 1px solid; border-bottom: #004684 1px solid;";
	this.style_popup_Body =		"background: #ece9d8;" +
								"filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=white, endColorstr=#e3e3e3);";
	this.selectionColor = "#5579aa";

	//Display Mode
	this.displayMode = "RICH";
	this.setDisplayMode = setDisplayMode;
	this.tmp = "";

	//Pop & Drop
	this.boxHide = boxHide;
	this.boxShowPop = boxShowPop;
	this.boxShowDrop = boxShowDrop;
	this.boxDimension = boxDimension;
	this.boxPosition = boxPosition;
	this.selOver = selOver;
	this.selOut = selOut;

	//Common
	this.oName = oName;
	this.doCmd = doCmd;
	this.doCmd2 = doCmd2;

	this.Sel;
	this.SelType;
	this.saveSelection = saveSelection;

	this.SelTextFrame;
	this.SelTextFrameActive;

	//Image
	this.boxShow_Image = boxShow_Image;
	this.ImagePageURL = "";
	this.ImagePageWidth = 443;
	this.ImagePageHeight = 470;
	
	this.UpdateImage = UpdateImage;
	this.InsertImage = InsertImage;	
	this.imgSrc = imgSrc;
	this.imgAlt = imgAlt;
	this.imgAlign = imgAlign;
	this.imgBorder = imgBorder;
	this.imgWidth = imgWidth;
	this.imgHeight = imgHeight;
	this.imgHspace = imgHspace;
	this.imgVspace = imgVspace;
	
	//Asset
	this.boxShow_Asset = boxShow_Asset;
	this.AssetPageURL = "";
	this.AssetPageWidth = 480;
	this.AssetPageHeight = 520;	
	
	this.InsertAsset_Hyperlink = InsertAsset_Hyperlink;
	this.InsertAsset_Flash = InsertAsset_Flash;
	this.InsertAsset_Video = InsertAsset_Video;
	this.InsertAsset_Image = InsertAsset_Image;
	this.InsertAsset_Sound = InsertAsset_Sound;
	this.InsertCustomHTML = InsertCustomHTML;

	//Internal Link
	this.boxShow_InternalLink  = boxShow_InternalLink;
	this.InternalLinkPageURL = "";
	this.InternalLinkPageWidth = 480;
	this.InternalLinkPageHeight = 520;
	
	//External Link
	this.boxShow_ExternalLink  = boxShow_ExternalLink;

	//Table
	this.boxShow_Table = boxShow_Table;
	this.showBorder = showBorder;
	this.IsBorderShow = true;

	//Page Properties
	this.boxShow_Page = boxShow_Page;
	this.getPageProperties = getPageProperties;
	this.GetElement = GetElement;
	
	//Misc
	this.pasteFromWord= pasteFromWord;
	this.cleanFromWord = cleanFromWord;
	this.InsertText = InsertText;
	this.getContent = getContent;
	this.getContentBody = getContentBody;
	this.putContent = putContent;
	this.isFullHTML = false;
	this.setTitle = setTitle;
	this.getTitle = getTitle;

	this.onSave = function(){return true;};
	
	//Buttons
	this.useSave = false;this.useZoom = false;
	this.useInternalLink = false; 

	this.usePrint = true;
	this.useStyle = true; this.useParagraph = true;
	this.useFontName = true; this.useSize = true;
	this.useText = true; this.useCut = true; this.useCopy = true;
	this.usePaste = true; this.useUndo = true; this.useRedo = true;
	this.useSelectAll = true;
	this.useBold = true; this.useItalic = true; this.useUnderline = true;
	this.useStrikethrough = true; this.useSuperscript = true; this.useSubscript = true;
	this.useSymbol = true; this.useJustifyLeft = true;
	this.useJustifyCenter = true; this.useJustifyRight = true;
	this.useJustifyFull = true; this.useNumbering = true;
	this.useBullets = true;	this.useIndent = true;
	this.useOutdent = true;	this.useImage = true;
	this.useForeColor = true; this.useBackColor = true;
	this.useExternalLink = true; this.useTable = true;
	this.useShowBorder = true;
	this.useAbsolute = true; this.useClean = true;
	this.useAsset = true; this.useLine = true;
	this.usePageProperties = true; this.useWord = true;

	//Run
	this.prebuiltHTML = "<html><head></head><body><div></div></body></html>";
	this.RUN = RUN;

	//Path Stuff
	this.base = "";
	this.baseEditor = "";
	this.getEditorPreviewPath = getEditorPreviewPath;

	//Stylesheet Stuff
	this.getPageCSSText = getPageCSSText;
	this.setPageCSSText = setPageCSSText;

	this.StyleSelection = "";
	this.StyleSelectionPath_RelativeTo_EditorPath = "";
	this.LoadStyleSelection = LoadStyleSelection; this.WriteStyleSelection = WriteStyleSelection;
	this.writeStyle = writeStyle;
	this.applyStyle = applyStyle;

	this.PageStyle = "";
	this.PageStylePath_RelativeTo_EditorPath = "";
	}

function getEditorPreviewPath(APPLIED_LINK)//APPLIED_LINK=> Relative
	{
	//kalo absolute (ada http://, https://... tdk diproses
	//diasumsikan applied link absolute yg dikehendaki
	//todo: buat fungsi yg memproses APPLIED_LINK=> Absolute
	if(APPLIED_LINK.indexOf(":")!=-1) return APPLIED_LINK;

	//kalo base & baseEditor tdk di=specify, dianggap editing & publishing sama (tdk perlu diproses).
	if(this.base=="") return APPLIED_LINK;

	base = this.base;
	baseEditor = this.baseEditor;

	//STEP1
	nDeep1=APPLIED_LINK.split("../").length-1;

	//STEP2
	var sTmp=baseEditor.substring(0,baseEditor.length-1);//remove last "/"
	for(var i=0;i<nDeep1;i++)
		{
		sTmp = sTmp.substring(0,sTmp.lastIndexOf("/"));
		}
	base1=sTmp+"/";//add last "/"

	//STEP3
	str=APPLIED_LINK;
	var arrTmp = str.split("../");
	if (arrTmp.length > 1) str = arrTmp.join("");
	ext1 = str;

	//STEP4
	APPLIED_LINK_ABSOLUTE = base1 + ext1;

	//STEP5
	var arr1 = base.split("/");
	var arr2 = APPLIED_LINK_ABSOLUTE.split("/");
	var sSamePart = "";
	var sTmp = "";
	if(arr1.length>arr2.length)
		{
		for(var i=0;i<arr1.length;i++)
			{
			if(arr2[i]==arr1[i])
				{
				if(i==arr1.length-1)sSamePart=sTmp;
				sTmp+=arr2[i]+"/";
				}
			else
				sSamePart=sTmp;
			}
		//alert(sSamePart)
		}
	else
		{
		for(var i=0;i<arr2.length;i++)
			{
			if(arr2[i]==arr1[i])
				{
				if(i==arr2.length-1)sSamePart=sTmp;
				sTmp+=arr2[i]+"/";
				}
			else
				sSamePart=sTmp;
			}
		//alert(sSamePart)
		}

	//STEP6
	str=base;
	var arrTmp = str.split(sSamePart);
	if (arrTmp.length > 1) str = arrTmp.join("");
	nDeep2=str.split("/").length-1;

	//STEP7
	base2="";
	for(var j=0;j<nDeep2;j++)
		{
		base2+="../";
		}

	//STEP8
	str=APPLIED_LINK_ABSOLUTE;
	var arrTmp = str.split(sSamePart);
	if (arrTmp.length > 1) str = arrTmp.join("");
	ext2=str;

	//STEP9
	return base2 + ext2;
	}