function clearDefaultandCSS(el)
{
	if (el.defaultValue==el.value)
		el.value = "";
	if (el.style) el.style.cssText = "";
}


/**
 * SWFObject v1.4.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
 *   legal reasons.
 */
if(typeof deconcept == "undefined") var deconcept = new Object();
if(typeof deconcept.util == "undefined") deconcept.util = new Object();
if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = new Object();
deconcept.SWFObject = function(swf, id, w, h, ver, c, useExpressInstall, quality, xiRedirectUrl, redirectUrl, detectKey){
	if (!document.getElementById) { return; }
	this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
	this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
	this.params = new Object();
	this.variables = new Object();
	this.attributes = new Array();
	if(swf) { this.setAttribute('swf', swf); }
	if(id) { this.setAttribute('id', id); }
	if(w) { this.setAttribute('width', w); }
	if(h) { this.setAttribute('height', h); }
	if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
	this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
	if(c) { this.addParam('bgcolor', c); }
	var q = quality ? quality : 'high';
	this.addParam('quality', q);
	this.setAttribute('useExpressInstall', useExpressInstall);
	this.setAttribute('doExpressInstall', false);
	var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
	this.setAttribute('xiRedirectUrl', xir);
	this.setAttribute('redirectUrl', '');
	if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); }
}
deconcept.SWFObject.prototype = {
	setAttribute: function(name, value){
		this.attributes[name] = value;
	},
	getAttribute: function(name){
		return this.attributes[name];
	},
	addParam: function(name, value){
		this.params[name] = value;
	},
	getParams: function(){
		return this.params;
	},
	addVariable: function(name, value){
		this.variables[name] = value;
	},
	getVariable: function(name){
		return this.variables[name];
	},
	getVariables: function(){
		return this.variables;
	},
	getVariablePairs: function(){
		var variablePairs = new Array();
		var key;
		var variables = this.getVariables();
		for(key in variables){
			variablePairs.push(key +"="+ variables[key]);
		}
		return variablePairs;
	},
	getSWFHTML: function() {
		var swfNode = "";
		if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
			if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "PlugIn"); }
			swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'"';
			swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
			var params = this.getParams();
			 for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
			var pairs = this.getVariablePairs().join("&");
			 if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
			swfNode += '/>';
		} else { // PC IE
			if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "ActiveX"); }
			swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'">';
			swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
			var params = this.getParams();
			for(var key in params) {
			 swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
			}
			var pairs = this.getVariablePairs().join("&");
			if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
			swfNode += "</object>";
		}
		return swfNode;
	},
	write: function(elementId){
		if(this.getAttribute('useExpressInstall')) {
			// check to see if we need to do an express install
			var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
			if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
				this.setAttribute('doExpressInstall', true);
				this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
				this.addVariable("MMdoctitle", document.title);
			}
		}
		if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){
			var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
			n.innerHTML = this.getSWFHTML();
			return true;
		}else{
			if(this.getAttribute('redirectUrl') != "") {
				document.location.replace(this.getAttribute('redirectUrl'));
			}
		}
		return false;
	}
}

/* ---- detection functions ---- */
deconcept.SWFObjectUtil.getPlayerVersion = function(){
	var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
	if(navigator.plugins && navigator.mimeTypes.length){
		var x = navigator.plugins["Shockwave Flash"];
		if(x && x.description) {
			PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
		}
	}else{
		// do minor version lookup in IE, but avoid fp6 crashing issues
		// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
		try{
			var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		}catch(e){
			try {
				var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
				PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
				axo.AllowScriptAccess = "always"; // throws if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
			} catch(e) {
				if (PlayerVersion.major == 6) {
					return PlayerVersion;
				}
			}
			try {
				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			} catch(e) {}
		}
		if (axo != null) {
			PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
		}
	}
	return PlayerVersion;
}
deconcept.PlayerVersion = function(arrVersion){
	this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0;
	this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0;
	this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0;
}
deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
	if(this.major < fv.major) return false;
	if(this.major > fv.major) return true;
	if(this.minor < fv.minor) return false;
	if(this.minor > fv.minor) return true;
	if(this.rev < fv.rev) return false;
	return true;
}
/* ---- get value of query string param ---- */
deconcept.util = {
	getRequestParameter: function(param) {
		var q = document.location.search || document.location.hash;
		if(q) {
			var pairs = q.substring(1).split("&");
			for (var i=0; i < pairs.length; i++) {
				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
					return pairs[i].substring((pairs[i].indexOf("=")+1));
				}
			}
		}
		return "";
	}
}
/* fix for video streaming bug */
deconcept.SWFObjectUtil.cleanupSWFs = function() {
	if (window.opera || !document.all) return;
	var objects = document.getElementsByTagName("OBJECT");
	for (var i=0; i < objects.length; i++) {
		objects[i].style.display = 'none';
		for (var x in objects[i]) {
			if (typeof objects[i][x] == 'function') {
				objects[i][x] = function(){};
			}
		}
	}
}
// fixes bug in fp9 see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
deconcept.SWFObjectUtil.prepUnload = function() {
	__flash_unloadHandler = function(){};
	__flash_savedUnloadHandler = function(){};
	if (typeof window.onunload == 'function') {
		var oldUnload = window.onunload;
		window.onunload = function() {
			deconcept.SWFObjectUtil.cleanupSWFs();
			oldUnload();
		}
	} else {
		window.onunload = deconcept.SWFObjectUtil.cleanupSWFs;
	}
}
if (typeof window.onbeforeunload == 'function') {
	var oldBeforeUnload = window.onbeforeunload;
	window.onbeforeunload = function() {
		deconcept.SWFObjectUtil.prepUnload();
		oldBeforeUnload();
	}
} else {
	window.onbeforeunload = deconcept.SWFObjectUtil.prepUnload;
}
/* add Array.push if needed (ie5) */
if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }}

/* add some aliases for ease of use/backwards compatibility */
var getQueryParamValue = deconcept.util.getRequestParameter;
var FlashObject = deconcept.SWFObject; // for legacy support
var SWFObject = deconcept.SWFObject;



/*
	Random Quote Factory
*/

var quoteSet = new Array();

var aQuote=new Array();
aQuote["quote"]="From a standing start in January 2006, we were amazed how quickly the AOL program was received by publishers.  With Tradedoublers promotional strategy and a highly competitive new offer from AOL , we were able to reach a huge network of publishers in a short period of time.";
aQuote["cite"]="Grant Reid,  Manager, Online Partner Marketing, AOL UK";
aQuote["logo"]="/media/images/aol_136.gif";
quoteSet["1"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We believe that there are multiple benefits to working with one single Affiliate Network with a truly pan European reach. Working closely with the team at TradeDoubler to optimise the results of our affiliate program has enabled us to hit and exceed our aggressive sales targets.";
aQuote["cite"]=" Selina Knight – Senior Manager, Demand Generation (Apple Online Store)";
aQuote["logo"]="/media/images/apple_137.gif";
quoteSet["2"]=aQuote;var aQuote=new Array();
aQuote["quote"]="With TradeDoubler’s td Toolbox we are now able to consolidate all our online marketing tracking, thereby saving ourselves valuable time and resources.   The td Toolbox enables us to compare Return on Investment for all our online marketing initiatives and ultimately evaluate the effectiveness of all campaigns.";
aQuote["cite"]=" Mirko Behnert, E-Commerce Marketing Manager, Avis Europe plc";
aQuote["logo"]="/media/images/avis_138.gif";
quoteSet["3"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler have been fantastic, their understanding of our market and our needs for the near future has ensured that we will be with them for the long term";
aQuote["cite"]=". William Dymott, Marketing Manager, Boden";
aQuote["logo"]="/media/images/boden_166.gif";
quoteSet["4"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler run five affiliate programs for BT. We decided to return to TradeDoubler following extensive positive feedback from our publishers during a review of our affiliate strategy. TradeDoubler's reach, professional approach and reputation amongst publishers for delivering results was most influential.";
aQuote["cite"]="Chris King,  Head of Affiliates, BT";
aQuote["logo"]="/media/images/bt_131.gif";
quoteSet["5"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Working closely with our account manager we put together a strategy for Christmas in order to optimise this period. With the extra promotion through the AdTool and the incentive scheme, we saw an increase in traffic through to our site. This led to a significant increase in sales over the Christmas period while managing to keep our costs down and our CPA stable.";
aQuote["cite"]="Tracy Pope, Online Marketing Manager, Charles Tyrwhitt";
aQuote["logo"]="/media/images/charles_142.gif";
quoteSet["6"]=aQuote;var aQuote=new Array();
aQuote["quote"]="(TradeDoubler) has been fantastic at delivering revenue.  We were into six figures in the first three months.";
aQuote["cite"]="Jonathon Wall, Marketing Director, Dabs";
aQuote["logo"]="/media/images/dabs_143.gif";
quoteSet["7"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We Decided to work with TradeDoubler after a thorough evaluation of the market. We launched the program in June 2003 and have been more than pleasantly surprised by the success of the program thus far. This is due to TradeDoubler’s knowledge within performance-based marketing, their excellent technological solution and their access to a high quality affiliate partners. Dabs are committed to working with Tradedoubler in the long-term and see them as an essential partner in Dabs continued expansion.";
aQuote["cite"]="Jonathan Wall, Marketing Director, Dabs";
aQuote["logo"]="/media/images/dabs_143.gif";
quoteSet["8"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler has been the Pan European Dell affiliate network partner since2002 and is part of the European success of Dell’s online marketing.  They have been able to put in place a dedicated European structure across 13 countries to answer Dell needs and reach the business’ challenging objectives. Dell and TradeDoubler are close partners and have built a great relationship in order to improve and develop solutions to keep Dell’s strong position in the market.";
aQuote["cite"]="Linda Minto, EMEA affiliate manager, DELL ";
aQuote["logo"]="/media/images/dell_146.gif";
quoteSet["9"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Online is a highly effective sales channel for Dell but it is sometimes notoriously hard to convert online business customers. We recently tested td Talk (Pay-per-call) to convert online business customers by directing them to our call centre and we only pay on performance. There is a good chance then to sell in complementary products.";
aQuote["cite"]="Linda Minto, EMEA affiliate manager, DELL";
aQuote["logo"]="/media/images/dell_146.gif";
quoteSet["10"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We work with TradeDoubler across many European markets to extend our reach on the internet. We are impressed with the quality of top publishers TradeDoubler can provide.";
aQuote["cite"]="– Linda Minto, EMEA affiliate manager, DELL";
aQuote["logo"]="/media/images/dell_146.gif";
quoteSet["11"]=aQuote;var aQuote=new Array();
aQuote["quote"]="The td Toolbox is key to dfds Seaways to manage and adserve all our TradeDoubler online activities, as well as online activities from other agencies. We are able to optimise using the same reporting and compare activities against each other. Importantly it also enables us to identify duplicated sales across marketing channels. ";
aQuote["cite"]="Lars G Toftefors, Marketing Director, DFDS Seaways";
aQuote["logo"]="/media/images/dfds_148.gif";
quoteSet["12"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We use td Talk (Per-per-call) to drive incremental sales by targeting users who have questions and feel reluctant or unable to complete their application online. User behaviour is not uniform, and this channel makes our product portfolio more accessible to a wider audience and improves the users experience and journey";
aQuote["cite"]="Charlotte Dickson, Marketing Manager, Direct Line";
aQuote["logo"]="/media/images/direct_149.gif";
quoteSet["13"]=aQuote;var aQuote=new Array();
aQuote["quote"]="eConversions is an affiliate marketing company specialising in driving large volumes of sales to our merchant partners.  We have been an affiliate partner with Tradedoubler since 2003 and during this period have promoted hundreds of TradeDoubler’s advertisers within the UK and throughout Europe.";
aQuote["cite"]="Max Jennings, Operations Director, eConversions,  www.econversions.co.uk";
aQuote["logo"]="/media/images/eConversions_150.gif";
quoteSet["16"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Thanks to their reputation and status within the affiliate market, Tradedoubler has consistently delivered a diverse range of market leading advertisers for us promote, which ensures that we can reliably partner with the best online merchants across each sector.";
aQuote["cite"]=" Max Jennings, Operations Director, eConversions,  www.econversions.co.uk";
aQuote["logo"]="/media/images/eConversions_150.gif";
quoteSet["17"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler is a technology leader within the affiliate industry.  Their affiliate user interface is intuitive and user friendly, and, importantly, their tracking technology has consistently proven to be accurate and reliable.";
aQuote["cite"]="Max Jennings, Operations Director, eConversions,  www.econversions.co.uk";
aQuote["logo"]="/media/images/eConversions_150.gif";
quoteSet["18"]=aQuote;var aQuote=new Array();
aQuote["quote"]="In our experience, TradeDoubler’s staff  have an excellent understanding of the market; significantly, they identify which advertisers and campaigns are most suited to our core online marketing strengths and ensure that we are always equipped to maximise sales for our Advertiser partners.  We have always found the TradeDoubler team responsive to our suggestions and supportive of the ideas we have sought to promote their advertisers.";
aQuote["cite"]="Max Jennings, Operations Director, eConversions,  www.econversions.co.uk";
aQuote["logo"]="/media/images/eConversions_150.gif";
quoteSet["19"]=aQuote;var aQuote=new Array();
aQuote["quote"]="As we maintain affiliate activity throughout Europe, TradeDoubler’s pan-European portfolio of advertisers also enables us to streamline a lot of our relationships and simplifies commission payments.";
aQuote["cite"]="Max Jennings, Operations Director, eConversions,  www.econversions.co.uk";
aQuote["logo"]="/media/images/eConversions_150.gif";
quoteSet["20"]=aQuote;var aQuote=new Array();
aQuote["quote"]="As we did not have the necessary expertise and knowledge on how to best run an affiliate program, we partnered with TradeDoubler to ensure Go Travel Insurance gets the best out of this marketing channel.  TradeDoubler are the experts and through their extensive knowledge, we managed to increase sales 338% year on year.";
aQuote["cite"]="Andy Taylor, Founder, Go Travel Insurance";
aQuote["logo"]="/media/images/gotravel_151.gif";
quoteSet["21"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We are thrilled with the level of commissions we have been able to achieve through working with TradeDoubler.  The publisher team at TradeDoubler really focuses on its relationship with publishers, providing an excellent service and attention to detail. ";
aQuote["cite"]="Neil Durrant, co-founder, GreasyPalm. ";
aQuote["logo"]="/media/images/p_1.gif";
quoteSet["22"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler's network of online publishers are a successful and important channel to help HP reach new customers. We were so delighted with the level of proactive service from TradeDoubler we have now launched with TradeDoubler in 5 other European Markets and are soon to launch in more";
aQuote["cite"]="Mike Thomas, Marketing Director, Hewlett Packard ";
aQuote["logo"]="/media/images/hp_153.gif";
quoteSet["23"]=aQuote;var aQuote=new Array();
aQuote["quote"]="The current strategy has generated strong revenues with the potential for further growth. The affiliate channel is progressively becoming a significant source of online business and fits well within our online marketing mix. We look forward to it’s continued success as an integral part of our online business.";
aQuote["cite"]="Ivan Imhoff, UK Director of Channel Development, Hilton";
aQuote["logo"]="/media/images/hilton_152.gif";
quoteSet["24"]=aQuote;var aQuote=new Array();
aQuote["quote"]="The growth in revenue we have seen since we signed up for the Account Management programme has been excellent. We are absolutely delighted with the results.";
aQuote["cite"]="Colin Martin, Commercial Sales Director, Jessops";
aQuote["logo"]="/media/images/jessops_154.gif";
quoteSet["25"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler's structured consultancy teams drive impressive results for both Natwest Credit Cards and RBS Credit Cards. Their ability to share sector knowledge whilst remaining dedicated to each of our brands is valued.";
aQuote["cite"]="Adam Stewart, Head of Internet, Natwest and RBS Credit Cards.";
aQuote["logo"]="/media/images/natwest_157.gif";
quoteSet["26"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We initially teamed up with TradeDoubler predominantly due to its European presence and size of network which allowed us to have the largest potential customer reach.  We decided to use the consultancy service to help us ramp up our existing affiliate programme and help drive increased traffic to our website.";
aQuote["cite"]="Julie Adams, Online Marketing Manager, P&O Ferries";
aQuote["logo"]="/media/images/pando_158.gif";
quoteSet["27"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Our TradeDoubler Consultant worked with us to help identify areas for improvement and opportunity and subsequently developed several new initiatives for us to implement.";
aQuote["cite"]="Julie Adams, Online Marketing Manager, P&O Ferries";
aQuote["logo"]="/media/images/pando_158.gif";
quoteSet["28"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We are amazed by how quickly the Post Office™ Program was taken up by publishers. With the combination of TradeDoubler’s promotional strategy, Adtool technology and the Post Office™ brand strength, we were able to reach a huge network of publishers in a short space of time. The program has been one of the most successful on the TradeDoubler UK network to-date in terms of initial take-up by publishers.";
aQuote["cite"]="Alex Tait, Online Marketing Manager, Post Office";
aQuote["logo"]="/media/images/postoffice_160.gif";
quoteSet["29"]=aQuote;var aQuote=new Array();
aQuote["quote"]="I contacted TradeDoubler by e-mail at about 10:30am on Tuesday regarding a problem I was having with being accepted by a merchant. I got a reply from Sandra within 20 minutes and within no time the problem had been sorted, and my concerns were put to rest. This kind of fast response is much appreciated…";
aQuote["cite"]="Keith (Posted on www.a4uforum.co.uk/ )";
aQuote["logo"]="/media/images/p_1.gif";
quoteSet["30"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We chose TradeDoubler following extensive assessment of key mass affiliation networks.  In just over a year they have proven themselves and driven good results. We have since utilised their reach and launched in Benelux through Rail Europe Continental.";
aQuote["cite"]="Caroline Heaton, eCommerce Executive, Rail Europe Limited";
aQuote["logo"]="/media/images/raileurope_161.gif";
quoteSet["31"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler managed our International campaign with ease and were able to rise to the challenge of going live within a short time period. We are very happy with the td Reach results and TradeDoubler’s swift operation.";
aQuote["cite"]="Thomas French, Director E-Business/CRM, Toshiba";
aQuote["logo"]="/media/images/toshiba_165.gif";
quoteSet["32"]=aQuote;var aQuote=new Array();
aQuote["quote"]="We are thrilled with the quality of publishers that TradeDoubler were able to bring to our program from the very beginning. They have continued to deliver increasingly successful results since we began the program at the end of 2003 and don’t seem too phased by the daunting targets we’ve set them. Working with TradeDoubler has also reinforced my belief that it is advisable to operate with a single network.";
aQuote["cite"]="Jamie Jaggard, Marketing Manager, LOVEFiLM";
aQuote["logo"]="/media/images/lovefilm_156.gif";
quoteSet["33"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler’s approach is a proactive one, offering new opportunities such as td Talk (Pay-per-call) and incentives as well as actioning our requests and suggestions.";
aQuote["cite"]="Chris Morling, www.aboutyourmoney.co.uk";
aQuote["logo"]="/media/images/aboutyourmoney_139.gif";
quoteSet["34"]=aQuote;var aQuote=new Array();
aQuote["quote"]="A successful affiliate network not only requires quality merchants and a strong technology platform, but it also needs to establish strong personal relationships. Tradedoubler delivers on all counts.";
aQuote["cite"]="Chris Morling, www.aboutyourmoney.co.uk";
aQuote["logo"]="/media/images/aboutyourmoney_139.gif";
quoteSet["35"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Their portfolio of household brands and niche market merchants are supported by a professional, responsive and likable team who have considerable knowledge in their area of expertise. ";
aQuote["cite"]="Chris Morling, www.aboutyourmoney.co.uk";
aQuote["logo"]="/media/images/aboutyourmoney_139.gif";
quoteSet["36"]=aQuote;var aQuote=new Array();
aQuote["quote"]="It makes a change for online companies to reply 'personally' and not with generic automatically generated gobbledygook (if you'll pardon the technical term) and it is much appreciated! ";
aQuote["cite"]="Anne Parish, www.algarve-rentals.com";
aQuote["logo"]="/media/images/algarve_135.gif";
quoteSet["37"]=aQuote;var aQuote=new Array();
aQuote["quote"]="TradeDoubler understands price comparison publishers well. They listen to our needs and take steps to create technology to make our work easier. They are professional in their approach and quick to respond. We have partnered with many top advertisers through TradeDoubler.";
aQuote["cite"]="Christophe Guy, Head of Sales, www.Pangora.com";
aQuote["logo"]="/media/images/pangora_159.gif";
quoteSet["38"]=aQuote;var aQuote=new Array();
aQuote["quote"]="Through TradeDoubler's easy to use Media Toolbox, we track and manage approximately 40% of Kelkoo's European traffic to point of sale. This provides Kelkoo with quality metrics on which we can base all our online business decisions.";
aQuote["cite"]="Dominique Vidal, Managing Director, Yahoo! Europe. ";
aQuote["logo"]="/media/images/p_1.gif";
quoteSet["39"]=aQuote;


function displayRandomQuote(pageQuotes,element,sizeType) {
	var rndIndex=Math.floor(Math.random()*pageQuotes.length);

	var cite = document.createElement("strong");
	cite.appendChild(document.createTextNode(" - " + quoteSet[pageQuotes[rndIndex]]["cite"]));

	var quote = document.createElement("p");
	quote.setAttribute("class","edmblockquoteb");
	quote.setAttribute("className","edmblockquoteb");
	quote.appendChild(document.createTextNode("\""+quoteSet[pageQuotes[rndIndex]]["quote"]+"\""));
	
	
	/* Add logo to different place depending on style */
	if(sizeType=="NARROW") {
		var logo = document.createElement("img");
		logo.setAttribute("class","quote_logo");
		logo.setAttribute("className","quote_logo");
		logo.setAttribute("src",quoteSet[pageQuotes[rndIndex]]["logo"])
		quote.appendChild(logo); 
	}
	if(sizeType=="WIDE") {
		document.getElementById(element+"_logo").src=quoteSet[pageQuotes[rndIndex]]["logo"];
	}	
	
	quote.appendChild(cite);

	var bq = document.createElement("blockquote");
	bq.setAttribute("class","edmblockquotea");
	bq.setAttribute("className","edmblockquotea");
	bq.appendChild(quote);

	document.getElementById(element).appendChild(bq);
	
}


function visit(newURL) {
	if (newURL != "") {location.href=newURL;}
}

