helptext
/***********************************************
* File: createAdone.js
* Author: Matt Fraser
* Date: January 2009
* Purpose: Gives us a nice dynamic ad designer
* ********************************************/
if (!document.getElementsByClassName) {
document.getElementsByClassName = function (cn) {
var rx = new RegExp("(?:^|\\s)" + cn+ "(?:$|\\s)");
var allT = document.getElementsByTagName("*"), allCN = [],ac="", i = 0, a;
while (a = allT[i=i+1]) {
ac=a.className;
if ( ac && ac.indexOf(cn) !==-1) {
if(ac===cn){ allCN[allCN.length] = a; continue; }
rx.test(ac) ? (allCN[allCN.length] = a) : 0;
}
}
return allCN;
}
}
/* GLOBALS */
var form ="";
var inputs = "";
var publication = "";
var publicationinputs = "";
var classes = "";
var classesoptions = "";
var classesinputs = "";
var titleText = "";
var bodyText = "";
var footerText = "";
var selectedpublication = "";
var selectedclass = "";
var caldiv = "";
var cal = "";
var datechooser = "";
var submitBtn = "";
var allpubserror = "";
var classmessage = "" //PVT
var resp = "";
var badwords = "";
var helptext = "";
var helpimg = "";
var orighelptext = "";
var dealspans = {};
dealspans['Four+for+Three'] = 4;
dealspans['Half+Price+Monday'] = 3;
dealspans['3+Day+Deal'] = 3;
dealspans['25+Dollar+Birthday+Deal'] = 1;
var maxchars = {};
maxchars['Half+Price+Monday'] = 200;
maxchars['3+Day+Deal'] = 200;
maxchars['25+Dollar+Birthday+Deal'] = 200;
var helptexts = {};
helptexts['Otago+Daily+Times'] = "The ODT is Otago's most popular newspaper. Read by over 92,000 people every day throughout Otago and the lower South Island.";
helptexts['The+News+Alexandra'] = "The News covers the Central Otago area from Alexandra to Wanaka.";
helptexts['The+Star'] = "The Star is Dunedin's number one community newspaper. Delivered to all homes and around the city of Dunedin, The Star is read by 58,000 people every week.";
helptexts['Gore+Ensign'] = "The Gore Ensign is delivered free throughout Eastern Southland, Northern Southland and West Otago twice weekly on Wednesday and Friday.";
helptexts['Timaru+Courier'] = "The Timaru Courier covers the Timaru and surrounding areas.";
helptexts['Southland+Express'] = "The Southland Express is delivered throughout Invercargill and surrounding areas.";
helptexts['Hurunui+News'] = "The News (North Canterbury) covers the Hurunui, Kaikoura and Waimakariri areas north of Christchurch.";
helptexts['Queenstown+Times'] = "Advertise in the Queenstown Times - a Tuesday insert in the Otago Daily Times delivered throughout the Wakatipu area.";
helptexts['Four+for+Three'] = "The Four for Three deal allows you to place the same ad four times within a six day period in the Otago Daily Times and receive the last ad free. No refunds available, however, you can cancel your ad at any time by calling us on (03)477-8000.";
helptexts['Half+Price+Monday'] = "The Half Price Weekday deal allows you to advertise on a Saturday in the Otago Daily Times and repeat the same ad on any day the following Monday to Friday for half the Saturday price. No refunds, no cancellations.";
helptexts['3+Day+Deal'] = "The 3 Day Deal allows you to save a massive 36% by advertising 5 lines on any three consecutive weekdays within in the Otago Daily Times for only $30. No refunds available, however, you can cancel your ad at any time by calling us on (03)477-8000.";
helptexts['Taieri+Times-bad'] = "Advertise in the Queenstown Times - a Tuesday insert in the Otago Daily Times delivered throughout the Wakatipu area.";
helptexts['Taieri+Times'] = "Taieri Times is a local publication that covers Green Island, Mosgiel and surrounding areas.";
helptexts['25+Dollar+Birthday+Deal'] = "The Birthday Greeting deal allows you to place an ad with a 3.5x4cm photo and up to 20 words for $25. Normally $64. No refunds, no cancellations. See www.odt.co.nz/birthdaygreetings for prize terms.";
function urldecode(str) {
str = str.replace(/\+/g, ' ');
str = unescape(str);
return str;
}
// 'Object Converter', converts an array to an object so we can
// use the 'in' operator
function oc(a)
{
var o = {};
for(var i=0;i
Loading ...