<!-- #include virtual="/includes/functions.asp" -->
<%
verify

section = "Content" %>
<!--#include file="includes/top.asp"-->
			
<div class="title-cell" style="background-color:<%=color2%>;"><h5>:: <%=section%></h5></div>
<div class="content">
	<script language="Javascript" src="../editor/scripts/innovaeditor.js"></script>
	<p><b>Add New Section
	
	<p>
	<form name="addsection" action="process/addsection.asp" method="post">
	<table cellpadding="3" cellspacing="0" border="0">
		<tr>
		<td>Title: </td>
		<td><input name="title" size="30"></td>
		</tr>
		<tr>
		<td>URL: </td>
		<td><input name="URL" size="50"></td>
		</tr>
		<tr>
		<td colspan="2">OR</td>
		</tr>
		<tr>
		<td valign="top">Content: </td>
		<td>
		<textarea ID="content" name="content" cols="50" rows="10"></textarea>
		<script>
		var oEdit2 = new InnovaEditor("oEdit2");
		
		// Return HTML on inside the Body Tags
		oEdit2.mode="HTMLBody";
		
		// Set the Publishing Path
		oEdit2.publishingPath="http://www.prominentxtranet.com/";
		
		// Editor Dimensions
		oEdit2.width="550px";
		oEdit2.height="450px";
		
		// Stylesheets
		//oEdit2.css="http://www.prominentxtranet.com/style.css";
		//oEdit2.btnStyles=true;
		
		// Open the Asset Manager
		oEdit2.cmdAssetManager="modalDialogShow('/editor/assetmanager/assetmanager.asp',640,445)";
		
		// Fix Line Breaks - Use <P>
		oEdit2.useDIV=false;
		oEdit2.useBR=false;
		
		// Add Spell Checker
		oEdit2.btnSpellCheck=false;
		
		// Remove Unneccesary Buttons
		oEdit2.btnAbsolute=false;
		oEdit2.btnForm=false;
		
		oEdit2.btnTextFormatting=false;
		oEdit2.btnParagraphFormatting=false;
		oEdit2.btnListFormatting=false;
		oEdit2.btnBoxFormatting=false;
		oEdit2.btnCssText=false;
		
		oEdit2.REPLACE("content");
		</script>
		</td>
		</tr>
		<tr>
		<td valign="top">Restrict Access: </td>
		<td><input type="checkbox" name="restricted" value="E">ProMinent Employee<br>
			<input type="checkbox" name="restricted" value="D">ProMinent Distributor/Rep<br>
			<input type="checkbox" name="restricted" value="O">Chemical Vendor/OEM<br>
			<input type="checkbox" name="restricted" value="A">Aquatics Market Distributor<br>
			<input type="checkbox" name="restricted" value="U">End User<br>
		</td>
		</tr>
	</table>
	</p>
	
	<p><input type="submit" value="Add Section">
	</form>
</div>
		
<!--#include file="includes/bot.asp"-->
