function GetRTEContents(RTEIn){
	// Get the editor instance that we want to interact with.
	var oEditor = FCKeditorAPI.GetInstance(RTEIn) ;
	// Get the editor contents in XHTML.
	return oEditor.GetXHTML( true ); // "true" means you want it formatted.	
}
function PopulateStripNav(sURLIn,oFieldIn){
	var sPrevCat = "";
	var sTempCat = "";
	var iNavCount = 0;
	document.write("<select name='StripURL' style='width:270px;margin-left:8px;margin-right:8px;' onChange='document.location.href=this.value;'>");	
	for (i=1;i<aStripTitles.length;i++){
		sTempCat = aStripCats[i]
		if (sTempCat==""){sTempCat="Random Strips"}
		//Display Category if it's different
		if (sTempCat != sPrevCat){
			document.write("<option value=\""+ aStripURLs[i] +"\" style='color:#9F095C;font-weight:bold;background-color:#eeeeee;'>"+ sTempCat +"</option>");
		}
		document.write("<option value=\""+ aStripURLs[i] +"\"");
		if(sURLIn == aStripURLs[i]){document.write(" selected");}
		document.write(">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+ aStripTitles[i] +"</option>");
		//Set prev cat
		sPrevCat = sTempCat;
	}
	document.write("</select>");
}
