%
'****************************************************************************************
'** Copyright Notice
'**
'** Web Wiz Rich Text Editor(TM)
'** http://www.richtexteditor.org
'**
'** Copyright (C)2001-2008 Web Wiz(TM). All Rights Reserved.
'**
'** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS UNDER LICENSE FROM 'WEB WIZ'.
'**
'** IF YOU DO NOT AGREE TO THE LICENSE AGREEMENT THEN 'WEB WIZ' IS UNWILLING TO LICENSE
'** THE SOFTWARE TO YOU, AND YOU SHOULD DESTROY ALL COPIES YOU HOLD OF 'WEB WIZ' SOFTWARE
'** AND DERIVATIVE WORKS IMMEDIATELY.
'**
'** If you have not received a copy of the license with this work then a copy of the latest
'** license contract can be found at:-
'**
'** http://www.webwizguide.com/license
'**
'** For more information about this software and for licensing information please contact
'** 'Web Wiz' at the address and website below:-
'**
'** Web Wiz, Unit 10E, Dawkins Road Industrial Estate, Poole, Dorset, BH15 4JD, England
'** http://www.webwizguide.com
'**
'** Removal or modification of this copyright notice will violate the license contract.
'**
'****************************************************************************************
'*************************** SOFTWARE AND CODE MODIFICATIONS ****************************
'**
'** MODIFICATION OF THE FREE EDITIONS OF THIS SOFTWARE IS A VIOLATION OF THE LICENSE
'** AGREEMENT AND IS STRICTLY PROHIBITED
'**
'** If you wish to modify any part of this software a license must be purchased
'**
'****************************************************************************************
'Preview, print, spell toolbar
'------------
If (blnSpellCheck AND NOT RTEenabled = "opera") Then Response.Write(vbCrLf & " document.writeln('
")
If (blnSpellCheck AND NOT RTEenabled = "opera") Then Response.Write("
")
If (blnSpellCheck AND NOT RTEenabled = "opera") Then Response.Write("');")
'insert toolbar
'------------
If blnAdvAdddHyperlink OR blnAddHyperlink Or blnEmoticons Then Response.Write(vbCrLf & " document.writeln('")
'If advanced hyperlink is enabled have a popup link
If blnAdvAdddHyperlink Then
Response.Write("
")
'Else have the basic hperlink adding feature
ElseIf blnAddHyperlink Then
Response.Write("
")
End If
If blnEmoticons Then Response.Write("
")
If blnAdvAdddHyperlink OR blnAddHyperlink Or blnEmoticons Then Response.Write("');")
'Font style toolbar
'------------
If blnBold OR blnItalic OR blnUnderline Then Response.Write(vbCrLf & " document.writeln('
")
If blnBold Then Response.Write("
")
If blnItalic Then Response.Write("
")
If blnUnderline Then Response.Write("
")
If blnBold OR blnItalic OR blnUnderline Then Response.Write("');")
'Text colour toolbar
'------------
If blnTextColour OR blnTextBackgroundColour Then Response.Write(vbCrLf & " document.writeln('")
If blnTextColour Then Response.Write("
")
If RTEenabled = "winIE" AND blnTextBackgroundColour Then Response.Write("
")
If RTEenabled = "Gecko" AND blnTextBackgroundColour Then Response.Write("
")
If blnTextColour OR blnTextBackgroundColour Then Response.Write("');")
'Quick reply to Full Reply
'------------
Response.Write(vbCrLf & " document.writeln('")
Response.Write("
")
Response.Write("');")
'About toolbar
'------------
If blnLCode Then
Response.Write(vbCrLf & " document.writeln('
")
Response.Write("
")
Response.Write("');")
End If
%>