function cd_load_script(url) {
	var script = document.createElement("SCRIPT");
	script.src = url;
	script.type = 'text/javascript';
	document.getElementsByTagName("head")[0].appendChild(script);
}

var noConflict = false;
if (typeof jQuery == "undefined") {
	noConflict = true;
	//document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js\"></scri"+"pt>");
	cd_load_script("http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js");

}

/***
* DHTML Exit
* Version: 1.1 - 11.11.2011
*/

var cd_pop_obj = null;
var pseudo = null;
var CD_auto_lang = null;

function cd_pop_dhtml(params) {
	/**
	* Functions definitions
	*/
	var log = function (message) {
		if (typeof console != 'undefined') {
			console.log(message);
		}
	}


	this.blink = function() {
		if (this.blinkTextVisible) {
			this.blinkText = this.blinkObject.val() ;
			this.blinkObject.val('');
			this.blinkTextVisible = false;
		}else{
			this.blinkObject.val(this.blinkText);
			this.blinkTextVisible = true;
		}
	}

	var start_blink = function(fldId, default_email) {
		this.blinkDefaultMail = default_email;
		this.blinkObject = jQuery('#'+fldId, cd_pop_obj.iframeJQuery);

		if (this.blinkObject.val() == cd_pop_obj.blinkDefaultMail || this.blinkObject.val() == '') {
			this.blinkTimer = setInterval("cd_pop_obj.blink()", 500);
		}

		this.blinkObject.focus(function () {
			cd_pop_obj.stop_blink();
			if (cd_pop_obj.blinkObject.val() == cd_pop_obj.blinkDefaultMail) {
				cd_pop_obj.blinkObject.val("");
			}
		});

		this.blinkObject.blur(function () {
			if (cd_pop_obj.blinkObject.val() == cd_pop_obj.blinkDefaultMail || cd_pop_obj.blinkObject.val() == "") {
				cd_pop_obj.blinkObject.val(cd_pop_obj.blinkDefaultMail);
				cd_pop_obj.blinkTimer = setInterval("cd_pop_obj.blink()", 500)
			}
		});
	}

	var stop_blink = function() {
		if (this.blinkTimer) {
			clearInterval(this.blinkTimer);
		}
	}

	/*this.blinkInput = function () {
		this.log("Blinking input...");
		if (!jQuery("input[type=text]", this.iframeJQuery).hasClass("redBorder")) {
			jQuery("input[type=text]", this.iframeJQuery).addClass("redBorder");
		}else {
			jQuery("input[type=text]", this.iframeJQuery).removeClass("redBorder");
		}

		if (this.countBlinks > 4) {
			this.countBlinks = 0;
		}else {
			this.countBlinks++;
			setTimeout("cd_pop_obj.blinkInput()", 150);
		}
	}*/

	var init = function () {
		this.log("Init...");
		if (typeof jQuery == 'undefined' || jQuery == null) {
			setTimeout("cd_pop_obj.init()", 500);
			this.log("Delay until jquery ready...");
			return;
		}
		
		
		if(typeof cd_pop_obj.lgdetect == 'undefined'){
			detectLang();
			cd_pop_obj.lgdetect = 1;
		}
		
		this.log("Set noConflict()...");
		if (noConflict)
			jQuery.noConflict();
		
		
		this.log("Extend jQuery  getUrlVars...");
		jQuery.extend({getUrlVars:function(){var a=[],b;var c=window.location.href.slice(window.location.href.indexOf("?")+1).split("&");for(var d=0;d<c.length;d++){b=c[d].split("=");a.push(b[0]);a[b[0]]=b[1]}return a},getUrlVar:function(a){return jQuery.getUrlVars()[a]}})
		/**
		 * Cookie plugin
		 *
		 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
		 * Dual licensed under the MIT and GPL licenses:
		 * http://www.opensource.org/licenses/mit-license.php
		 * http://www.gnu.org/licenses/gpl.html
		 *
		 */
		jQuery.cookie=function(a,b,c){if(typeof b!="undefined"){c=c||{};if(b===null){b="";c.expires=-1}var d="";if(c.expires&&(typeof c.expires=="number"||c.expires.toUTCString)){var e;if(typeof c.expires=="number"){e=new Date;e.setTime(e.getTime()+c.expires*24*60*60*1e3)}else{e=c.expires}d="; expires="+e.toUTCString()}var f=c.path?"; path="+c.path:"";var g=c.domain?"; domain="+c.domain:"";var h=c.secure?"; secure":"";document.cookie=[a,"=",encodeURIComponent(b),d,f,g,h].join("")}else{var i=null;if(document.cookie&&document.cookie!=""){var j=document.cookie.split(";");for(var k=0;k<j.length;k++){var l=jQuery.trim(j[k]);if(l.substring(0,a.length+1)==a+"="){i=decodeURIComponent(l.substring(a.length+1));break}}}return i}}


		if (this.aggresive || jQuery.cookie("cd_exit_closed") != "1" || this.mode == 'click') {
			jQuery(document).ready(function () {
				cd_pop_obj.prepare();
				//jQuery(document).mousemove(cd_pop_obj.mouseMove);
				if (cd_pop_obj.mode == 'exit')
					jQuery(document).mouseleave(cd_pop_obj.mouseOut);

				
			});
		}else {
			this.log("DHTML not created. Obeying non aggresive mode");
		}

		jQuery(document).ready(function () {
			jQuery(".cd_dhtml_btn").click(function () {
				if (cd_pop_obj.mode == 'click') {
					cd_pop_obj.show();
					return false;
				}
			});

			if (cd_pop_obj.demo == true && cd_pop_obj.mode == 'click') {
				jQuery("img").css("cursor","pointer");
				jQuery("img").click(function () {
					cd_pop_obj.show();
					return false;
				});
			}
		});
	}

	var detectOs = function () {
		var userAgent = navigator.userAgent;
		var cssClass = "default";
		if (userAgent.match(/Windows NT 5\.(1|2)/)) {//XP, XP64, Win2003
			cssClass = "xp";
		}else if (userAgent.match(/Windows NT 6\.0/)) { //Vista
			cssClass = "vista";
		}else if (userAgent.match(/Windows NT 6\.1/)) { //Win7
			cssClass = "win7";
		}else if (userAgent.match(/Mac OS/)) { //Win7
			cssClass = "macos";
		}

		this.log("userAgent: "+userAgent);
		this.log("cssClass:  "+cssClass);

		return cssClass;
	}

	var showPopunder = function () {
		var c = document.createElement("div");
		c.innerHTML = "<!--[if IE]><![endif]-->";
		IsIE = c.innerHTML.length == 0 ? true : false;
		popunderWin = self.window.open("about:blank", "rand_" + Math.floor(89999999 * Math.random() + 10000000), "toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=0,resizable=1,width=1024,height=950");
		if (popunderWin) {
			popunderWin.blur();
			popunderWin.Init = function (e) {
				with (e) {this.Params = e.Params;this.Main = function () {
						if (typeof window.mozPaintCount != "undefined") {var x = this.window.open("about:blank");x.close();} var a = this.Params.popunderURL;try {opener.window.focus();} catch (err) {}window.location = a;};this.Main();
				}
			};
			popunderWin.Params = {popunderURL: this.popunderUrl};
			popunderWin.Init(popunderWin);
		}
	};

	var prepare = function () {
		
		if (typeof CD_auto_lang == 'undefined' || CD_auto_lang == null) {
			setTimeout("cd_pop_obj.prepare()", 500);
			this.log("Delay until language detected ready...");
			return;
		}
		
		
		this.dimmer = document.createElement("DIV");
		this.dimmer.className = "dimmer";
		jQuery('body').append(this.dimmer);
		jQuery(".dimmer").css({width:"100%", height:"100%", position:"absolute", top: 0, left: 0, background: "#000000", zIndex:1000, opacity: "0.85", filter:"alpha(opacity=85);", display:"none"});
		//this.dimmer
		//.popup_out {width:100%; height:100%; position:absolute; left:0; top:0; filter:alpha(opacity=85);-moz-opacity:.85;opacity:.85; z-index:200; background:#000; display: none}

		this.iframe = document.createElement("iframe");
		this.iframe.id = "cd_exit_dhtml";
		this.iframe.frameBorder = 0;
		
		if(this.lg == ''){
			this.lg = CD_auto_lang;
		}
		
		
		
		
		jQuery('body').append(this.iframe);
		
		//Prepare the content
		var html = this.dhtmlObject.html;
		var site = this.dhtmlObject.site;
		var reg = new RegExp("");
		html = html.replace(/images\//g, this.imagesBase+this.type+"/"+this.synergie+(site? "/"+site : "")+"/images/");
		this.log(this.imagesBase+this.type+"/"+this.synergie+(site? "/"+site : "")+"/images/");
		html = html.replace("%OS%", this.os);

		//Time
		var now = new Date();
		html = html.replace("%TIME%", now.getHours()+"h"+(now.getMinutes()< 10 ? "0" : "")+now.getMinutes());


		/* Parse template data */
		var thumbs = html.match(/%THUMB\d+(_\w)?%/g);
		if (this.type == 'live') {
			html = html.replace("%MINUTES%", Math.floor(Math.random()*10)+5); //Parse minutes

			//this.log(thumbs);
			if (thumbs != null && thumbs.length) {
				for (var i=0;i<thumbs.length;i++) {
					var size = thumbs[i].match(/_\w+/g);
					if (size != null && size.length) {
						if (size[0] == "_S") {
							liveshow_models[i].thumb = liveshow_models[i].thumb.replace("_75", "_50");
						}else if (size[0] == "_L") {
							liveshow_models[i].thumb = liveshow_models[i].thumb.replace("_75_percent", "");
						}
					}

					html = html.replace(thumbs[i], liveshow_models[i].thumb);

					if (size != null && size.length)
						thumbs[i] = thumbs[i].replace(size[0], "");
					html = html.replace(thumbs[i].replace("THUMB", "PSEUDO"), liveshow_models[i].name);
				}
			}
		}else if (this.type == 'dating' && site == 'rencontreshard') {
			var thumbs = html.match(/(%THUMB\d+(_\d+x\d+)?%)/g);
			//this.log(thumbs);
			if (thumbs != null && thumbs.length) {
				if (typeof thumbs_array == 'undefined') {
					alert("Data not available");
				}else {
					for (var i=0;i<thumbs.length;i++) {
						var size = thumbs[i].match(/\d+x\d+/g);
						this.log("Size:"+size);

						html = html.replace(thumbs[i], thumbs_array['femmes'][size][i].imgName);
						//this.log(size);
						if (size != null && size.length)
							thumbs[i] = thumbs[i].replace("_"+size[0], "");

						html = html.replace(thumbs[i].replace("THUMB", "LINK"), thumbs_array['femmes'][size][i].imgName+" "+thumbs_array['femmes'][size][i].name);
					}
				}
			}
		}else if (this.type == 'dating' && site == 'yesmessenger') {
			var thumbs = html.match(/(%THUMB\d+(_\d+x\d+)?%)/g);
			//this.log(thumbs);
			if (thumbs != null && thumbs.length) {
				for (var i=0;i<thumbs.length;i++) {
					var size = thumbs[i].match(/\d+x\d+/g);

					html = html.replace(thumbs[i], thumbs_array['normal']['sexy'][size][this.synergie][0][i].imgName);

					if (size != null && size.length)
						thumbs[i] = thumbs[i].replace("_"+size[0], "");

					html = html.replace(thumbs[i].replace("THUMB", "LINK"), thumbs_array['normal']['sexy'][size][this.synergie][0][i].imgName+" "+thumbs_array['normal']['sexy'][size][this.synergie][0][i].name);
					html = html.replace(thumbs[i].replace("THUMB", "PSEUDO"), thumbs_array['normal']['sexy'][size][this.synergie][0][i].name);
					//this.log(size);
				}
			}
		}else if (this.type == 'dating' && site == 'mykodial') {
			var thumbs = html.match(/(%THUMB\d+(_\d+x\d+)?%)/g);
			//
			var thumbsMykodial = getRandomThumbs(10, 'beurs', this.dhtmlObject.thumbSizes);
			this.log(thumbsMykodial);
			if (thumbs != null && thumbs.length) {
				for (var i=0;i<thumbs.length;i++) {
					var size = thumbs[i].match(/\d+x\d+/g);

					html = html.replace(thumbs[i], thumbsMykodial[i].path);
					if (size != null && size.length)
						thumbs[i] = thumbs[i].replace("_"+size[0], "");
					this.log(thumbs[i]);
					html = html.replace(thumbs[i].replace("THUMB", "PSEUDO"), thumbsMykodial[i].nickname);
					html = html.replace(thumbs[i].replace("THUMB", "AGE"), thumbsMykodial[i].age);
					//this.log(size);
				}
			}
		}

		/* Adjust iframe properties */
		this.iframe.border = 0;
		this.iframe.scrolling = 'no';
		this.iframe.style.overflow = "hidden";
		this.iframe.style.display = "none";
		this.iframe.style.position = "absolute";
		this.iframe.style.top = "50%";
		this.iframe.style.left = "50%";
		this.iframe.style.zIndex = "1001";
		this.iframe.noresize = "noresize";
		this.iframe.style.backgroundColor = "transparent";
		this.iframe.marginWidth = "0";
		this.iframe.marginHeight = "0";
		this.iframe.allowTransparency = "true";


		//Modify iframe source
		if(this.iframe.contentDocument)
			this.iframeDoc = this.iframe.contentDocument; // For NS6
		else if(this.iframe.contentWindow)
			this.iframeDoc = this.iframe.contentWindow.document; // For IE5.5 and IE6
		// Put the content in the iframe
		this.iframeDoc.open();
		this.iframeDoc.writeln(html);
		this.iframeDoc.close();
		this.iframeJQuery = jQuery('#cd_exit_dhtml').contents();

		//Fix ie issues
		jQuery("body", jQuery('#cd_exit_dhtml').contents()).css("overflow", "hidden");
		jQuery("html, body", jQuery('#cd_exit_dhtml').contents()).css("background-color", "transparent");

		jQuery("form", cd_pop_obj.iframeJQuery).bind('submit', function () {
			return false;
		});

		/* Handle user clicks */
		if (this.type == 'live') {
			pseudo = new userSuggest({input:"pseudo", suggest: "suggest", domain: (cd_pop_obj.synergie=='hetero' ? "chocam.com" : "keumshow.com"), css: {'margin-left': 0, "margin-top": 0}, "target": jQuery('#cd_exit_dhtml').contents()});
			var event = function() {
				var userEmail 	= jQuery("#email", jQuery('#cd_exit_dhtml').contents()).val();
				var userNick 	= jQuery("#pseudo", jQuery('#cd_exit_dhtml').contents()).val();
				var userPass	= jQuery("#password", jQuery('#cd_exit_dhtml').contents()).val();

				if (userEmail == "" || userNick == "" || userPass=="") {
					alert(cd_pop_obj.requiredFieldsMsg[cd_pop_obj.lg]);
				}else if(!cd_pop_obj.validateMail.test(userEmail)){
					alert(cd_pop_obj.invalidMailMsg[cd_pop_obj.lg]);
					jQuery("#email", jQuery('#cd_exit_dhtml').contents()).focus();
				}else {
					suggestRegister(
					userNick,
					userPass,
					userEmail,
					{id:cd_pop_obj.id, tracker:cd_pop_obj.tracker, synergie: cd_pop_obj.synergie, cs:cd_pop_obj.synergie=='hetero'?"chocam":"keumshow", lg: cd_pop_obj.lg}
					);
					//Don`t hide on error`
					//cd_pop_obj.hide(true);
				}
				return false;
			};

			jQuery(".submitBtn", jQuery('#cd_exit_dhtml').contents()).click(event);
			jQuery("form", jQuery('#cd_exit_dhtml').contents()).submit(event);
		}else if ( this.type== 'vod') {
			this.start_blink("email", "@");
			var event = function(e) {
				if(!cd_pop_obj.validateMail.test(jQuery('#email', cd_pop_obj.iframeJQuery).val())){
					alert(cd_pop_obj.invalidMailMsg[cd_pop_obj.lg]);
					jQuery('#email', cd_pop_obj.iframeJQuery).focus();
				}else {
					var url = "https://secure.securitetotale.com/cb.php?module=guest_cbsys_preform&w=0&force_step1=1&action=step2&email=" + jQuery('#email', cd_pop_obj.iframeJQuery).val() + "&id=" + cd_pop_obj.id + "&idp=1&mb&tracker=" + cd_pop_obj.tracker + "&synergie=" + cd_pop_obj.synergie + "&param=&num_facturation=1&langue=" + cd_pop_obj.langue +"&mb="; //&oldrf=" + oldrf + "&rf=" + rf + "&id_site=" + id_site + "&id_produit=" + id_produit + "&e=" + exit_console
					//var id_factu = _g('id_facturation');
					//if (id_factu != '') url+="&id_facturation="+id_factu;
					var nam = "securitotale" + Math.floor(Math.random()*100000000);
					window.open(url, nam);
					cd_pop_obj.hide(true);
				}
				return false;
			};

			jQuery(".submitBtn", cd_pop_obj.iframeJQuery).click(event);
			jQuery("form", cd_pop_obj.iframeJQuery).submit(event);
		}else if (this.type == 'dating' && site == "rencontreshard") {
			var event = function() {
				var params = '';
				var linkData = jQuery(this).attr("lang") ? jQuery(this).attr("lang").split(" ") : "";
				if (linkData.length == 2) {
					params += "&img_path="+encodeURIComponent(linkData[0]);
					window.open("http://clouds.rencontreshard.com/download.php?id="+cd_pop_obj.id+"&tracker="+cd_pop_obj.tracker+params, "rh_download"+Math.floor(Math.random()*100), "width=750, height=800");
				}else {
					top.location.href = "http://download.rencontreshard.com/"+cd_pop_obj.id+"/"+cd_pop_obj.tracker+"/rencontreshard.exe";
				}

				cd_pop_obj.hide(true);
				return false;
			};

			jQuery("a", jQuery('#cd_exit_dhtml').contents()).not(".close").click(event);
			jQuery("form", jQuery('#cd_exit_dhtml').contents()).not(".close").submit(event);
		}else if (this.type == 'dating' && site == "yesmessenger") {
			var event = function() {
				var params = '';
				var linkData = jQuery(this).attr("lang") ? jQuery(this).attr("lang").split(" ") : "";
				if (linkData.length == 2) {
					params += "&img_path="+encodeURIComponent(linkData[0]);
					window.open("http://outils.yesmessenger.com/download.php?id="+cd_pop_obj.id+"&tracker="+cd_pop_obj.tracker+params, "ym_download"+Math.floor(Math.random()*100), "width=750, height=650");
				}else {
					top.location.href = "http://download.yes-messenger.com/"+cd_pop_obj.id+"/v2|"+cd_pop_obj.tracker+"/yesmessenger.exe";
				}

				cd_pop_obj.hide(true);
				return false;
			};

			jQuery("a", jQuery('#cd_exit_dhtml').contents()).not(".close").click(event);
			jQuery("form", jQuery('#cd_exit_dhtml').contents()).not(".close").submit(event);
		}else if (this.type == 'dating' && site == "mykodial") {
			this.start_blink("email", "@");
			var event = function() {
				var userEmail 	= jQuery("input[name=email]", jQuery('#cd_exit_dhtml').contents()).val();
				var userNick 	= jQuery("input[name=nickname]", jQuery('#cd_exit_dhtml').contents()).val();
				var userPass	= jQuery("input[name=password]", jQuery('#cd_exit_dhtml').contents()).val();

				if (userEmail == "" || userNick == "" || userPass=="") {
					alert(cd_pop_obj.requiredFieldsMsg[cd_pop_obj.lg]);
				}else if(!cd_pop_obj.validateMail.test(userEmail)){
					alert(cd_pop_obj.invalidMailMsg[cd_pop_obj.lg]);
					jQuery('input[name=email]', cd_pop_obj.iframeJQuery).focus();
				}else {
					//Mykodial Service
					//SVN http://svn.carpediem.fr/devs/stanislav-dev/mykodial/www

					jQuery.getJSON("http://www.mykodial.com/?jsoncallback=?", {id: cd_pop_obj.id, module: "guest_mykodial_remote_subscribe", tracker: cd_pop_obj.tracker, langue: cd_pop_obj.lg, email: userEmail, nickname: userNick, password: userPass, age: (Math.floor(Math.random()*15)+18)}, function(data) {
						cd_pop_obj.log(data);
						if (data.status == "FAILED") {
							var allMsgs = '';
							for (var key in data.messages) {
								var msg = data.messages[key];
								allMsgs += msg+"\n";
							}

							alert(allMsgs);
						}else {
							cd_pop_obj.hide(true);
							top.location = data.messages[0];
						}
					});

				}
				return false;
			}

			jQuery(".submitBtn", jQuery('#cd_exit_dhtml').contents()).click(event);
			jQuery("form", jQuery('#cd_exit_dhtml').contents()).submit(event);
		}

		/* Handle close button click */
		jQuery('.close', jQuery('#cd_exit_dhtml').contents()).click(function() {
			cd_pop_obj.hide();
			return false;
		});
		
		
		
		
		
		
		if (cd_pop_obj.mode == 'load') {
			cd_pop_obj.show();
		}
	}

	var show = function () {

		/**
		* Respect non-aggresive mode
		*/
		if (this.mode != 'click' && (this.visible || (!this.aggresive && jQuery.cookie("cd_exit_closed") == 1) || (this.alreadyClosed && this.mode != 'click'))) {
			this.log("DHTML visible or already shown and closed");
			return;
		}

		/**
		* Show element and dimmer
		*/
		this.visible = true;
		this.iframe.style.display = "block";
		jQuery(".dimmer").css("height", jQuery(document).height());
		jQuery(".dimmer").show();

		jQuery("object,embed,iframe").not("#cd_exit_dhtml").not("#innerpopup_iframeD").css("visibility", "hidden");


		/**
		*Set iframe size and offset
		*/
		var iframeObj = jQuery(cd_pop_obj.iframeDoc);
		jQuery("#cd_exit_dhtml").attr({
			width: iframeObj.width(),
			height: iframeObj.height()
		}).
		css({
			"margin-left":"-"+(parseInt(iframeObj.width()) / 2)+"px",
			"margin-top":"-"+(parseInt(iframeObj.height()) / 2)+"px"
		});

		this.log("visible, marginLeft: "+iframeObj.width()+" marginTop: "+iframeObj.height());
	}

	var hide = function (overRide) {
		if (typeof overRide == 'undefined') overRide = false;
		if (!this.visible)
			return false;

		this.visible=false;
		this.alreadyClosed = true;
		jQuery(".dimmer").hide();
		this.iframe.style.display = "none";

		jQuery("object,embed,iframe").not("#cd_exit_dhtml").css("visibility", "visible");

		/**
		* Set non-aggresive mode cookie
		*/
		if (!this.aggresive && !overRide) {
			this.log("Settings cd_exit_closed cookie...");
			jQuery.cookie("cd_exit_closed", 1);
		}


		/**
		* Show popunder if popunder allowed and not forced to hide
		*/
		if (this.popunder && !overRide)
			this.showPopunder();
	}

	var mouseMove = function (event) {
		//Page borders
		if (event.pageY < cd_pop_obj.areaHeight || event.pageY > jQuery(document).height()-cd_pop_obj.areaHeight) {
			cd_pop_obj.show();
		}
		//cd_pop_obj.log(event.pageY);
	}

	var mouseOut = function (event) {
		cd_pop_obj.show();
	}

	var getUrlVars = function () {
		var vars = [], hash;
		var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
		for(var i = 0; i < hashes.length; i++)
		{
			hash = hashes[i].split('=');
			vars.push(hash[0]);
			vars[hash[0]] = hash[1];
		}
		return vars;
	}
	
	var detectLang = function () {
		jQuery.ajax({ 
			url: "http://ajaxhttpheaders.appspot.com",
			dataType: 'jsonp', 
			success: function(headers) {
				CD_auto_lang = headers['Accept-Language'].split(';')[0].split(',')[0].split('-')[0];
			}
		});
	}

	this.init			= init;
	this.showPopunder	= showPopunder;
	this.detectOs 		= detectOs;
	this.log 			= log;
	this.mouseMove 		= mouseMove;
	this.mouseOut 		= mouseOut;
	this.prepare 		= prepare;
	this.show 			= show;
	this.hide 			= hide;
	this.getUrlVars 	= getUrlVars;

	this.start_blink 	= start_blink;
	this.stop_blink 	= stop_blink;
	this.blink			= blink;

	/**
	* Params
	*/
	
	this.debug 		= params['debug'] || false;
	this.id			= params['id'] || 10000;
	this.tracker	= params['tracker'] || '';
	this.lg			= params['lg'] || '';
	this.synergie	= params['synergie'] || "hetero";
	this.type		= params['type'] || "live";
	this.popunder	= (typeof params['popunder'] != 'undefined' ? params['popunder'] : true);
	this.aggresive	= (typeof params['aggresive'] != 'undefined' ? params['aggresive'] : false);
	this.mode		= (typeof params['mode'] != 'undefined' ? params['mode'] : 'exit');
	this.demo		= (typeof params['demo'] != 'undefined' ? params['demo'] : false);

	this.log("Aggresive mode: "+this.aggresive);

	if (typeof this.type == 'object') {
		this.type = this.type[Math.floor(Math.random()*this.type.length)];
		this.log("Random type:"+this.type);
	}

	if (this.type == '') this.type = 'live';

	if (!this.mode.match(/(exit|load|click)/)) {
		this.log("Forcing mode to 'exit'...");
		this.mode = 'exit';
	}else {
		this.log("Mode: "+this.mode);
	}

	/**
	* Constants
	*/
	this.validateMail = /^[\w-\.]{2,}@[\w-]{1,}\./; //Email validation RegExp
	this.requiredFieldsMsg = {
		en: "All fields are required!",
		it: "Tutti i campi sono obbligatori!",
		es: "¡Todos los campos son requeridos!",
		fr: "Tous les champs sont requis !"
	};

	this.invalidMailMsg = {
		en: "You must enter a valid email!",
		it: "Inserite uni'ndirizzo email valido !",
		es: "¡Entre un e-mail válido !",
		fr: "Votre email doit être valable !"
	};

	this.popunderRotations = {hetero: {fr:87,it:362,en:362,es:362}, gay: {fr:347,it:361,en:361,es:361}};
	this.popunderUrl = "http://www.espace-plus.net/redir/rotation_redir.php?id_rotation="+popunderRotations[this.synergie][this.lg]+"&w=0&e=0";
	//this.imagesBase = "./";
	this.imagesBase = "http://ktu.sv2.biz/cd_pop_dhtml/";
	this.areaHeight = 50; //Margin area that will trigger the DHTML
	this.visible = false;
	this.alreadyClosed = false;
	this.countBlinks = 0;
	this.os = this.detectOs();

	if (typeof this.getUrlVars()['os'] != 'undefined') {
		this.os = this.getUrlVars()['os'];
	}

	this.blinkTimer;
	this.blinkObject;
	this.blinkTextVisible 	= true;
	this.blinkDefaultMail 	= '@';
	this.blinkText			= null;



	//Select the dhtml
	
	if(typeof(params['forceNum']) != "undefined"){
		this.dhtml_id = params['forceNum'];
	}else{
		this.dhtml_id = Math.floor(Math.random() * cd_exit_pop_templates[this.type][this.synergie].length);
	}

	this.dhtmlObject = cd_exit_pop_templates[this.type][this.synergie][this.dhtml_id];

	if (this.dhtml_id >= cd_exit_pop_templates[this.type][this.synergie].length) {
		this.dhtml_id = cd_exit_pop_templates[this.type][this.synergie].length - 1;
	}

	//Tracker suffix
	this.tracker 	+= this.synergie=='hetero'?"_h" :"_g";
	this.tracker	+= this.dhtmlObject.rev;
	this.tracker	+= "_exopt_"+(this.type=='live' ? "L" : (this.type=='dating' ? "D" : "V"))+"00"+(this.dhtml_id+1);
	this.tracker	+= "_"+(this.mode=='exit' ? "x" : (this.mode=='load' ? "l" : "c"));

	this.log("dhtml id: "+this.dhtml_id+"/"+this.synergie+"/"+this.type+" total: " + cd_exit_pop_templates[this.type][this.synergie].length);

	this.popunderUrl += "&id="+this.id+"&tracker="+this.tracker+"_close&lg="+this.lg;

	/**
	* Thumbs
	*/
	try {
		if (this.type == 'live') {
			//document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://svn5.carpediem.fr:81/devs/tsvetomir-dev/eurolive/promo/infopop/json.php?syn="+this.synergie+"\"></scr"+"ipt>");
// jQuery('head').append
			document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://promo.eurolive.com/infopop/json.php?syn="+this.synergie+"\"></scr"+"ipt>");
			document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://ktu.sv2.biz/sv3/suggestionbox_v4.js\"></scr"+"ipt>");
		}else if (this.type == 'dating' && this.dhtmlObject.site == 'rencontreshard') {
			document.write("<scr"+"ipt type=\"text/javascript\">\
			var thumbs_settings = {\
			size:'"+this.dhtmlObject.thumbSizes+"',\
			count:'20',\
			niche:'femmes'\
			}\
			</scr"+"ipt>");
			document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://www.rencontreshard.com/getThumbs.js\"></scr"+"ipt> ");
		}else if (this.type == 'dating' && this.dhtmlObject.site == 'yesmessenger') {
			document.write("<scr"+"ipt type=\"text/javascript\">\
			var thumbs_settings = {\
			size:'"+this.dhtmlObject.thumbSizes+"',\
			count:'20',\
			synergie:'hetero',\
			type:'sexy',\
			niche:'normal',\
			geo:false\
			}\
			</scr"+"ipt>");
			document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://www.yesmessenger.com/getThumbs.js\"></scr"+"ipt>");
		}else if (this.type == 'dating' && this.dhtmlObject.site == 'mykodial') {
			document.write("<scr"+"ipt type=\"text/javascript\" src=\"http://media.mykodial.com/v2/niches/beurs-"+this.dhtmlObject.thumbSizes+".js\"></scr"+"ipt>\
			<scr"+"ipt type=\"text/javascript\" src=\"http://media.mykodial.com/v2/niches/getRandomThumbs.js\"></scr"+"ipt>");
		}
	}catch(error) {
		this.log("Thumb inclusion error:"+error)
	}

	/**
	* Init
	*/
	cd_pop_obj = this;

	this.init();
}

/**
* Templates
*/
var cd_exit_pop_templates = {
	vod : {hetero : [
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">.redBorder {background-color: #EB9DB0 !important}/* VISTA SKIN */.vista {width:558px;height:509px;padding:1px 10px 0 8px;background:transparent url(images/001/skins/vista.png) no-repeat;}.vista .exitpop-x {height:17px;right:7px;top:1px;width:42px;}.vista .exitpop-title {display:block;height:16px;margin:5px 0 6px;color:#2E0000;font:bold 12px Arial;padding:0 0 0 20px;_float:left;}/* DEFAULT SKIN */.default {width:562px;height:504px;padding:1px 5px 0 6px;background:transparent url(images/001/skins/default.gif) no-repeat;}.default .exitpop-x {height:15px;right:7px;top:5px;width:15px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 3px;color:#fff;font:bold 11px Tahoma;padding:0 0 0 2px;_float:left;}/* XP SKIN */.xp {width:560px;height:508px;padding:1px 5px 0 5px;background:transparent url(images/001/skins/xp.gif) no-repeat;}.xp .exitpop-x {height:21px;right:7px;top:5px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:7px 0 6px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 2px;_float:left;}/* WIN7 SKIN */.win7 {width:575px;height:527px;padding:12px 5px 0 21px;background:transparent url(images/001/skins/win7.png) no-repeat;}.win7 .exitpop-x {height:17px;right:24px;top:7px;width:42px;}.win7 .exitpop-title {display:block;height:16px;margin:7px 0 9px;color:#000;font:bold 12px Tahoma;padding:0 0 0 28px;_float:left;}/* MACOS SKIN */.macos {width:578px;height:534px;padding:12px 5px 0 19px;background:transparent url(images/001/skins/macos.png) no-repeat;}.macos .exitpop-x {height:15px;right:25px;top:26px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:16px 0 7px;color:#4D4D4D;font:bold 11px Tahoma;padding:0 0 0 23px;_float:left;}/******** STYLES ********/.exitpop {position:relative;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:558px;height:472px;border:1px solid #496F81;background:#555 url(images/001/exitpop-bg.gif) no-repeat;}.exitpop-heading {display:block;}.exitpop-th {margin:12px 1px 0 19px;float:left;}.exitpop-label {font:normal 18px Trebuchet MS;color:#fff;text-align:center;display:block;margin:20px 0 0;}.exitpop-form {padding:0;margin:10px auto 0;width:268px;height:52px;}.exitpop-form .exitpop-inputtext {border:none;background:transparent;padding:7px 5px;margin:0;font:bold 16px Arial;width:250px;text-align:center;color:#555;height:22px;}.exitpop-btn {background:transparent url(images/001/exitpop-btn.gif) no-repeat;display:block;width:268px;height:52px;margin:25px 0 0;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop vista\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><img class=\"exitpop-heading\" border=\"0\" src=\"images/001/exitpop-heading.gif\" width=\"558\" height=\"124\" alt=\"\" /><img class=\"exitpop-heading\" border=\"0\" src=\"images/001/exitpop-heading-2.gif\" width=\"558\" height=\"35\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-1.jpg\" width=\"160\" height=\"120\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-2.jpg\" width=\"160\" height=\"120\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-3.jpg\" width=\"160\" height=\"120\" alt=\"\" /><div class=\"exitpop-clear\"><!-- --></div><label class=\"exitpop-label\">Entre juste ton email :</label><form class=\"exitpop-form\"><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" value=\"@\" /><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a></form></div></div></body></html>"},
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">.redBorder {background-color: #EB9DB0 !important}/* VISTA SKIN */.vista {width:619px;height:462px;padding:1px 10px 0 8px;background:transparent url(images/002/skins/vista.png) no-repeat;}.vista .exitpop-x {height:17px;right:7px;top:1px;width:42px;}.vista .exitpop-title {display:block;height:16px;margin:5px 0 6px;color:#2E0000;font:bold 12px Arial;padding:0 0 0 20px;_float:left;}/* DEFAULT SKIN */.default {width:623px;height:457px;padding:1px 5px 0 6px;background:transparent url(images/002/skins/default.gif) no-repeat;}.default .exitpop-x {height:15px;right:7px;top:5px;width:15px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 3px;color:#fff;font:bold 11px Tahoma;padding:0 0 0 2px;_float:left;}/* XP SKIN */.xp {width:623px;height:462px;padding:1px 5px 0 5px;background:transparent url(images/002/skins/xp.gif) no-repeat;}.xp .exitpop-x {height:21px;right:7px;top:5px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:7px 0 6px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 2px;_float:left;}/* WIN7 SKIN */.win7 {width:637px;height:487px;padding:12px 5px 0 21px;background:transparent url(images/002/skins/win7.png) no-repeat;}.win7 .exitpop-x {height:17px;right:24px;top:7px;width:42px;}.win7 .exitpop-title {display:block;height:16px;margin:7px 0 9px;color:#000;font:bold 12px Tahoma;padding:0 0 0 28px;_float:left;}/* MACOS SKIN */.macos {width:637px;height:487px;padding:12px 5px 0 19px;background:transparent url(images/002/skins/macos.png) no-repeat;}.macos .exitpop-x {height:15px;right:25px;top:26px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:16px 0 7px;color:#4D4D4D;font:bold 11px Tahoma;padding:0 0 0 23px;_float:left;}/******** STYLES ********/.exitpop {position:relative;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:613px;height:427px;padding:0 0 0 9px;background:#555 url(images/002/exitpop-bg.gif) repeat-x;}.exitpop-heading {display:block;}.exitpop-th {margin:15px 2px 0;float:left;}.exitpop-label {margin:36px 0 0;display:block;}.exitpop-form {padding:0;margin:10px auto 0;width:330px;height:52px;}.exitpop-form .exitpop-inputtext {border-style:solid;border-color:#a1a1a1;border-width:2px 1px 1px 2px;background:#fff;padding:5px;margin:0;font:bold 16px Arial;width:320px;text-align:center;color:#555;height:22px;}.exitpop-btn {background:transparent url(images/002/exitpop-btn.gif) no-repeat;display:block;width:187px;height:47px;margin:10px auto 0;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><img class=\"exitpop-heading\" border=\"0\" src=\"images/002/exitpop-heading.gif\" width=\"604\" height=\"126\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/002/exitpop-th-1.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/002/exitpop-th-2.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/002/exitpop-th-3.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/002/exitpop-th-4.jpg\" width=\"147\" height=\"110\" alt=\"\" /><div class=\"exitpop-clear\"><!-- --></div><img class=\"exitpop-label\" src=\"images/002/exitpop-label.gif\" width=\"604\" height=\"28\" alt=\"\" /><form class=\"exitpop-form\"><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" value=\"@\" /><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a></form></div></div></body></html>"},
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">.redBorder {background-color: #EB9DB0 !important}/* VISTA SKIN */.vista {width:619px;height:462px;padding:1px 10px 0 8px;background:transparent url(images/003/skins/vista.png) no-repeat;}.vista .exitpop-x {height:17px;right:7px;top:1px;width:42px;}.vista .exitpop-title {display:block;height:16px;margin:5px 0 6px;color:#2E0000;font:bold 12px Arial;padding:0 0 0 20px;_float:left;}/* DEFAULT SKIN */.default {width:623px;height:457px;padding:1px 5px 0 6px;background:transparent url(images/003/skins/default.gif) no-repeat;}.default .exitpop-x {height:15px;right:7px;top:5px;width:15px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 3px;color:#fff;font:bold 11px Tahoma;padding:0 0 0 2px;_float:left;}/* XP SKIN */.xp {width:623px;height:462px;padding:1px 5px 0 5px;background:transparent url(images/003/skins/xp.gif) no-repeat;}.xp .exitpop-x {height:21px;right:7px;top:5px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:7px 0 6px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 2px;_float:left;}/* WIN7 SKIN */.win7 {width:637px;height:487px;padding:12px 5px 0 21px;background:transparent url(images/003/skins/win7.png) no-repeat;}.win7 .exitpop-x {height:17px;right:24px;top:7px;width:42px;}.win7 .exitpop-title {display:block;height:16px;margin:7px 0 9px;color:#000;font:bold 12px Tahoma;padding:0 0 0 28px;_float:left;}/* MACOS SKIN */.macos {width:637px;height:487px;padding:12px 5px 0 19px;background:transparent url(images/003/skins/macos.png) no-repeat;}.macos .exitpop-x {height:15px;right:25px;top:26px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:16px 0 7px;color:#4D4D4D;font:bold 11px Tahoma;padding:0 0 0 23px;_float:left;}/******** STYLES ********/.exitpop {position:relative;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:613px;height:427px;padding:0 0 0 9px;background:#555 url(images/003/exitpop-bg.gif) repeat-x;}.exitpop-heading {display:block;}.exitpop-th {margin:15px 2px 0;float:left;}.exitpop-label {margin:36px 0 0;display:block;}.exitpop-form {padding:0;margin:10px auto 0;width:330px;height:52px;}.exitpop-form .exitpop-inputtext {border-style:solid;border-color:#a1a1a1;border-width:2px 1px 1px 2px;background:#fff;padding:5px;margin:0;font:bold 16px Arial;width:320px;text-align:center;color:#555;height:22px;}.exitpop-btn {background:transparent url(images/003/exitpop-btn.gif) no-repeat;display:block;width:187px;height:47px;margin:10px auto 0;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><img class=\"exitpop-heading\" border=\"0\" src=\"images/003/exitpop-heading.gif\" width=\"604\" height=\"126\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/003/exitpop-th-1.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/003/exitpop-th-2.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/003/exitpop-th-3.jpg\" width=\"147\" height=\"110\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/003/exitpop-th-4.jpg\" width=\"147\" height=\"110\" alt=\"\" /><div class=\"exitpop-clear\"><!-- --></div><img class=\"exitpop-label\" src=\"images/003/exitpop-label.gif\" width=\"604\" height=\"28\" alt=\"\" /><form class=\"exitpop-form\"><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" value=\"@\" /><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a></form></div></div></body></html>"}
		], gay: [
		{rev: "001", html : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">.redBorder {background-color: #EB9DB0 !important}/* VISTA SKIN */.vista {width:591px;height:500px;padding:1px 10px 0 8px;background:transparent url(images/001/skins/vista.png) no-repeat;}.vista .exitpop-x {height:17px;right:7px;top:1px;width:42px;}.vista .exitpop-title {display:block;height:16px;margin:5px 0 6px;color:#2E0000;font:bold 12px Arial;padding:0 0 0 20px;_float:left;}/* DEFAULT SKIN */.default {width:593px;height:495px;padding:1px 5px 0 6px;background:transparent url(images/001/skins/default.gif) no-repeat;}.default .exitpop-x {height:15px;right:7px;top:5px;width:15px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 3px;color:#fff;font:bold 11px Tahoma;padding:0 0 0 2px;_float:left;}/* XP SKIN */.xp {width:591px;height:499px;padding:1px 5px 0 5px;background:transparent url(images/001/skins/xp.gif) no-repeat;}.xp .exitpop-x {height:21px;right:7px;top:5px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:7px 0 6px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 2px;_float:left;}/* WIN7 SKIN */.win7 {width:606px;height:518px;padding:12px 5px 0 21px;background:transparent url(images/001/skins/win7.png) no-repeat;}.win7 .exitpop-x {height:17px;right:24px;top:7px;width:42px;}.win7 .exitpop-title {display:block;height:16px;margin:7px 0 9px;color:#000;font:bold 12px Tahoma;padding:0 0 0 28px;_float:left;}/* MACOS SKIN */.macos {width:605px;height:524px;padding:12px 5px 0 19px;background:transparent url(images/001/skins/macos.png) no-repeat;}.macos .exitpop-x {height:15px;right:25px;top:26px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:16px 0 7px;color:#4D4D4D;font:bold 11px Tahoma;padding:0 0 0 23px;_float:left;}/******** STYLES ********/.exitpop {position:relative;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:580px;height:465px;padding:0 0 0 11px;background:#222 url(images/001/exitpop-bg.gif) no-repeat;}.exitpop-heading {display:block;}.exitpop-th {margin:10px 6px 0;float:left;border:1px solid #68B911;}.exitpop-label {margin:32px 0 0;display:block;}.exitpop-form {padding:0;margin:13px 0 0 16px;_margin:13px 0 0 8px;height:52px;}.exitpop-form .exitpop-inputtext {border:0;background:transparent;padding:3px 5px;margin:7px 0 0;float:left;font:normal 26px Verdana;width:268px;text-align:center;color:#000;height:34px;border:0;display:block;}.exitpop-btn {background:transparent url(images/001/exitpop-btn.gif) no-repeat;width:174px;height:54px;float:left;margin:0 0 0 87px;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><img class=\"exitpop-heading\" border=\"0\" src=\"images/001/exitpop-heading.gif\" width=\"569\" height=\"121\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-1.jpg\" width=\"176\" height=\"136\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-2.jpg\" width=\"176\" height=\"136\" alt=\"\" /><img class=\"exitpop-th\" src=\"images/001/exitpop-th-3.jpg\" width=\"176\" height=\"136\" alt=\"\" /><div class=\"exitpop-clear\"><!-- --></div><img class=\"exitpop-label\" border=\"0\" src=\"images/001/exitpop-label.gif\" width=\"569\" height=\"65\" alt=\"\" /><form id=\"xxx\" class=\"exitpop-form\"><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" value=\"@\" /><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a></form></div></div></body></html>"},
		{rev: "001", html : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">.redBorder {background-color: #EB9DB0 !important}/* VISTA SKIN */.vista {background:transparent url(images/002/skins/vista.png) no-repeat;_background-image:none;}.vista .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/vista.png');}.vista .exitpop-x {width:31px;height:17px;top:9px;right:10px;}.vista .exitpop-title {display:block;height:16px;margin:1px 0 6px;color:#2E0000;font:normal 14px Arial;_float:left;}/* DEFAULT SKIN */.default {background:transparent url(images/002/skins/default.png) no-repeat;_background-image:none;}.default .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/default.png');}.default .exitpop-x {height:16px;right:12px;top:13px;width:16px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 2px 5px;color:#fff;font:bold 12px Tahoma;_float:left;}/* XP SKIN */.xp {background:transparent url(images/002/skins/xp.png) no-repeat;_background-image:none;}.xp .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/xp.png');}.xp .exitpop-x {height:21px;right:12px;top:9px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#fff;text-shadow:#0040A7 2px 1px 0px;font:bold 12px Tahoma;_float:left;}/* MACOS SKIN */.macos {background:transparent url(images/002/skins/macos.png) no-repeat;_background-image:none;}.macos .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/macos.png');}.macos .exitpop-x {height:15px;right:18px;top:9px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:0 0 6px 8px;color:#4d4d4d;font:bold 11px Tahoma;}/* WIN7 SKIN */.win7 {background:transparent url(images/002/skins/win7.png) no-repeat;_background-image:none;}.win7 .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/win7.png');}.win7 .exitpop-x {height:17px;right:12px;top:1px;width:41px;}.win7 .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#000;font:normal 12px Arial;_float:left;}/******** STYLES ********/.exitpop {width:611px;height:440px;padding:10px 10px 0 9px;position:relative;}.exitpop-ie6fix {display:none;position:absolute;top:0;left:0;width:630px;height:450px;_display:block;_z-index:-1;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:582px;height:407px;padding:0 0 0 27px;border:1px solid #505A64;background:#9BB6D3 url(images/002/exitpop-bg.gif) no-repeat scroll 3px 3px;}.exitpop-heading {margin:27px 0 0;display:block;}.exitpop-th {margin:21px 5px 5px;float:left;font:bold 12px Arial;color:#fff;}.exitpop-th img {display:block;border:5px solid #DBECFF;}.exitpop-label {font:bold 30px Arial;text-transform:uppercase;}.exitpop-form {background:transparent url(images/002/exitpop-form-bg.gif) no-repeat;padding:0;margin:5px 0 0;width:557px;height:52px;}.exitpop-form .exitpop-inputtext {border:none;background:transparent;padding:5px;margin:10px 0 0 11px;font:bold 16px Arial;width:378px;text-align:center;color:#747474;height:22px;float:left;}.exitpop-btn {background:transparent url(images/002/exitpop-btn.gif) no-repeat;display:block;width:146px;height:42px;margin:5px 0 0 5px;float:left;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance </div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><a class=\"exitpop-heading\" href=\"#\"><img border=\"0\" src=\"images/002/exitpop-heading.gif\" width=\"556\" height=\"106\" alt=\"\" /></a><a class=\"exitpop-th\" href=\"#\"><img src=\"images/002/exitpop-th-1.jpg\" width=\"120\" height=\"90\" alt=\"\" /></a><a class=\"exitpop-th\" href=\"#\"><img src=\"images/002/exitpop-th-2.jpg\" width=\"120\" height=\"90\" alt=\"\" /></a><a class=\"exitpop-th\" href=\"#\"><img src=\"images/002/exitpop-th-3.jpg\" width=\"120\" height=\"90\" alt=\"\" /></a><a class=\"exitpop-th\" href=\"#\"><img src=\"images/002/exitpop-th-4.jpg\" width=\"120\" height=\"90\" alt=\"\" /></a><div class=\"exitpop-clear\"><!-- --></div><img src=\"images/002/exitpop-line.gif\" width=\"556\" height=\"30\" alt=\"\" /><label class=\"exitpop-label\">Entre ton email et t&eacute;l&eacute;charge :</label><form class=\"exitpop-form\"><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" value=\"@\" /><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a><div class=\"exitpop-clear\"><!-- --></div></form></div><div class=\"exitpop-ie6fix\"><!-- --></div></div></body></html>"}
		]},
	live : {hetero : [
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px; margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:709px;height:558px;padding-left:5px;background:url(images/001/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:23px;padding:0 0 0 25px;color:#fff;font:bold 11px/22px Tahoma, sans-serif;}.default .header span {color:#FCFF00;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:725px;height:607px;padding-left:22px;background:url(images/001/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:29px;padding:21px 0 0 30px;color:#4D4D4D;font:bold 11px/26px Tahoma, sans-serif;}.macos .header span {color:#FF0000;}.macos .close {width:13px;height:14px;position:absolute;right:31px;top:28px;}/*xp*/.xp {width:709px;height:562px;padding-left:4px;background:url(images/001/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:27px;padding:0 0 0 30px;color:#fff;font:bold 12px/26px Tahoma, sans-serif;}.xp .header span {color:#FCFF00;}.xp .close {width:20px;height:20px;position:absolute;right:4px;top:4px;}/*win7*/.win7 {width:730px;height:606px;padding-left:26px;background:url(images/001/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:35px;padding:10px 0 0 29px;color:#3C3C3C;font:bold 11px/35px Tahoma, sans-serif;}.win7 .header span {color:#FF0000;}.win7 .close {width:42px;height:17px;position:absolute;right:31px;top:10px;}/*vista*/.vista {width:711px;height:566px;padding-left:8px;background:url(images/001/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 26px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .header span {color:#FF0000;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:703px;height:531px;background:url(images/001/exitpop_bg.png) left top no-repeat;}.content img {display:block;margin:0 auto;}.box1 {width:693px;margin:0 auto;padding-top:17px;overflow:hidden;}.box1 .left {float:left;width:225px;padding-top:37px;text-align:center;color:#fff;font:bold 12px Tahoma, sans-serif;}.box1 .left img {display:block;margin:0 auto;}.box1 .thumb {display:block;float:left;width:240px;height:180px;border:1px solid #085D77;}.box1 .right {float:left;width:160px;padding-left:22px;padding-top:64px;}.theform {margin:11px auto 0 auto;display:block;width:608px;height:216px;position:relative;background:url(images/001/exitpop_bg2.gif) left top no-repeat;}.input1 {position:absolute;left:267px;top:41px;width:280px;height:23px;background:transparent;border:none;color:#000;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.input2 {position:absolute;left:267px;top:81px;width:280px;height:23px;background:transparent;border:none;color:#000;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.input3 {position:absolute;left:267px;top:121px;width:280px;height:23px;background:transparent;border:none;color:#000;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.thesubmit {position:absolute;left:60px;top:165px;width:492px;height:51px;background:url(images/001/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/001/exitpop_submit.gif) left -51px no-repeat;}.p_txt1 {width:693px;height:85px;margin:0 auto;background:url(images/001/exitpop_txt1.gif) left top no-repeat;text-align:center;color:#fff;font:normal 30px Tahoma, sans-serif;} .suggest {margin-top: 70px !important; margin-left: 262px !important;} .box1 .thumb img {width: 240px; /*height:180px*/ }</style></head><body><div class=\"container %OS%\"><div class=\"header\">Webcam de <span>%PSEUDO00%</span> en temps r&eacute;el <span>%TIME%</span><a href=\"#\" class=\"close\"></a></div>  <div class=\"content\">  <div class=\"box1\"><div class=\"left\"><img src=\"images/001/exitpop_img1.gif\" /><!-- <span>06 utilisateurs connect&eacute;s</span> --></div><div class=\"thumb\"><!--dynamic picture from chocam.com--><img src=\"%THUMB00_L%\" alt=\"dynamic picture from chocam.com\" /></div><div class=\"right\"></div></div><div class=\"p_txt1\">Il reste encore %MINUTES% minutes gratuites !</div><form class=\"theform\"><input type=\"text\" class=\"input1\" name=\"pseudo\" id=\"pseudo\" /><input type=\"text\" class=\"input2\" name=\"password\" id=\"password\" /><input type=\"text\" class=\"input3\" value=\"\" name=\"email\" id=\"email\" /><a href=\"#\" class=\"thesubmit submitBtn\"></a></form>   </div></div></div></body></html>"},
		{rev: "001", html:"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px; margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:535px;height:506px;padding-left:6px;background:url(images/002/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 22px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:550px;height:553px;padding-left:21px;background:url(images/002/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:32px;padding:21px 0 0 24px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:13px;height:14px;position:absolute;right:25px;top:30px;}/*xp*/.xp {width:537px;height:509px;padding-left:4px;background:url(images/002/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 22px;color:#fff;font:bold 12px/28px Tahoma, sans-serif;}.xp .close {width:21px;height:21px;position:absolute;right:6px;top:5px;}/*win7*/.win7 {width:552px;height:529px;padding-left:17px;background:url(images/002/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:35px;padding:1px 0 0 22px;color:#3C3C3C;font:bold 11px/35px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:20px;top:2px;}/*vista*/.vista {width:537px;height:511px;padding-left:8px;background:url(images/002/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 22px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:529px;height:476px;background:url(images/002/exitpop_bg.gif) top repeat-x;}.content img {display:block;}.thumbs {width:506px;margin:0 auto 18px auto;padding:0 0 0 6px;overflow:hidden;}.thumb {display:block;float:left;margin-right:10px;width:150px;height:130px;padding:6px;background:url(images/002/exitpop_bg2.gif) left top no-repeat;}.thumbs .last {margin-right:0;}.theform {margin:13px auto 6px auto;width:370px;font:normal 17px Arial, sans-serif;color:#fff;}.theform td {padding:4px;*padding:3px 4px;font:normal 17px Arial, sans-serif;}.theform img {margin-left:0;}.theform input {width:194px;height:28px;padding:1px 5px;background:transparent url(images/002/exitpop_input.gif) left no-repeat;border:none;font:normal 17px/27px Arial, sans-serif;color:#000;text-align:center;}.pop_submit {display:block;margin:0 auto;width:257px;height:36px;background:url(images/002/exitpop_submit.gif) left top no-repeat;}.pop_submit:hover {background:url(images/002/exitpop_submit.gif) left -36px no-repeat;}</style>  </head><body><div class=\"container %OS%\"><div class=\"header\">Ne ferme pas cette fen&ecirc;tre<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/002/exitpop_txt1.gif\" /><div class=\"thumbs\"><div class=\"thumb\"><img src=\"%THUMB00%\" /></div><div class=\"thumb\"><img src=\"%THUMB01%\" /></div><div class=\"thumb last\"><img src=\"%THUMB02%\" /></div></div><img src=\"images/002/exitpop_txt2.gif\" /><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"theform\">  <tr><td align=\"right\">Ton pseudo :</td><td><input type=\"text\" name=\"pseudo\" id=\"pseudo\" /></td>  </tr>  <tr><td align=\"right\">Ton mot de passe :</td><td><input type=\"text\" name=\"password\" id=\"password\" /></td>  </tr>  <tr><td align=\"right\">Ton email :</td><td><input  type=\"text\" value=\"\" name=\"email\" id=\"email\" /></td>  </tr>  </table><a href=\"#\" class=\"pop_submit submitBtn\"></a>  </div></div></div></body></html>"},
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">/* VISTA SKIN */.vista {background:transparent url(images/003/skins/vista.png) no-repeat;_background-image:none;}.vista .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/vista.png');}.vista .exitpop-x {width:31px;height:17px;top:9px;right:10px;}.vista .exitpop-title {display:block;height:16px;margin:1px 0 6px;color:#2E0000;font:normal 14px Arial;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* DEFAULT SKIN */.default {background:transparent url(images/003/skins/default.png) no-repeat;_background-image:none;}.default .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/default.png');}.default .exitpop-x {height:16px;right:12px;top:13px;width:16px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 2px 5px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* XP SKIN */.xp {background:transparent url(images/003/skins/xp.png) no-repeat;_background-image:none;}.xp .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/xp.png');}.xp .exitpop-x {height:21px;right:12px;top:9px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#fff;text-shadow:#0040A7 2px 1px 0px;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* MACOS SKIN */.macos {background:transparent url(images/003/skins/macos.png) no-repeat;_background-image:none;}.macos .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/macos.png');}.macos .exitpop-x {height:15px;right:18px;top:9px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:0 0 6px 8px;color:#4d4d4d;font:bold 11px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;}/* WIN7 SKIN */.win7 {background:transparent url(images/003/skins/win7.png) no-repeat;_background-image:none;}.win7 .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/win7.png');}.win7 .exitpop-x {height:17px;right:12px;top:1px;width:41px;}.win7 .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#000;font:normal 12px Arial;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/******** STYLES ********/.exitpop {width:611px;height:440px;padding:10px 10px 0 9px;position:relative;}.exitpop-ie6fix {display:none;position:absolute;top:0;left:0;width:630px;height:450px;_display:block;_z-index:-1;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:582px;height:407px;padding:0 0 0 27px;border:1px solid #505A64;background:#555 url(images/003/exitpop-bg.gif) no-repeat;}.exitpop-cam-info {float:left;font:bold 12px Arial;color:#fff;margin:39px 0 0 36px;display:inline;}.exitpop-cam-info strong {color:#141414;}.exitpop-users-info {float:right;font:normal 12px Arial;color:#141414;margin:39px 38px 0 0;}.exitpop-heading {margin:23px 0 0;display:block;color:#fff;font:bold 30px Arial;}.exitpop-depeche {margin:18px 0 0 3px;display:block;color:#fff;font:bold 28px Arial;text-transform:uppercase;}.exitpop-choisis {margin:10px 0 0;display:block;color:#fff;font:bold 18px Arial;height:22px;}.exitpop-heading em {color:#FDB201;font-style:normal;}.exitpop-th {margin:14px 0 0 8px;float:left;font:bold 12px Arial;color:#fff;border:1px solid #fff;}.exitpop-form {background:transparent url(images/003/exitpop-form-bg.gif) no-repeat;padding:9px 0 0 40px;float:left;}.exitpop-label {font:normal 12px Arial;width:110px;color:#fff;float:left;margin:19px 0 0;}.exitpop-form .exitpop-inputtext {border:none;background:transparent;padding:4px;margin:14px 0 0 11px;font:bold 16px Arial;width:164px;text-align:center;color:#747474;height:20px;float:left;}.exitpop-btn {background:transparent url(images/003/exitpop-btn.gif) no-repeat;display:block;width:296px;height:34px;margin:14px 0 0;float:left;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;} .suggest {margin-left: 25px !important; margin-top: -80px !important}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><div class=\"exitpop-cam-info\">Webcam de <strong>%PSEUDO00%</strong> en temps r&eacute;el %TIME%</div><div class=\"exitpop-clear\"><!-- --></div><div class=\"exitpop-heading\">Il reste encore <em>%MINUTES% minutes gratuites !</em></div><div class=\"exitpop-choisis\">Choisis vite :</div><img class=\"exitpop-th\" src=\"%THUMB00_L%\" width=\"200\" height=\"174\" alt=\"\" /><form class=\"exitpop-form\"><label class=\"exitpop-label\">Ton pseudo :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"pseudo\" id=\"pseudo\" /><div class=\"exitpop-clear\"><!-- --></div><label class=\"exitpop-label\">Ton mot de passe :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"password\" id=\"password\" /><div class=\"exitpop-clear\"><!-- --></div><label class=\"exitpop-label\">Ton email :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" /><div class=\"exitpop-clear\"><!-- --></div><a href=\"#\" class=\"exitpop-btn  submitBtn\"><!-- --></a></form><div class=\"exitpop-clear\"><!-- --></div><div class=\"exitpop-depeche\">D&eacute;p&ecirc;che-toi avant la fin du show !</div></div><div class=\"exitpop-ie6fix\"><!-- --></div></div></body></html>"}
		], gay: [
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px; margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:597px;height:495px;padding-left:6px;background:url(images/001/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 3px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .header span {color:#FCFF00;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:608px;height:531px;padding-left:17px;background:url(images/001/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:34px;padding:15px 0 0 31px;color:#4D4D4D;font:bold 11px/33px Tahoma, sans-serif;}.macos .close {width:13px;height:14px;position:absolute;right:26px;top:26px;}/*xp*/.xp {width:598px;height:500px;padding-left:5px;background:url(images/001/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 5px;color:#fff;font:bold 12px/26px Tahoma, sans-serif;}.xp .close {width:20px;height:20px;position:absolute;right:5px;top:4px;}/*win7*/.win7 {width:611px;height:521px;padding-left:17px;background:url(images/001/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:37px;padding:1px 0 0 28px;color:#3C3C3C;font:bold 11px/37px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:21px;top:1px;}/*vista*/.vista {width:607px;height:507px;padding-left:8px;background:url(images/001/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 30px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:585px;height:459px;background-color:#28183A;border:3px solid #FF0202;}.content img {display:block;margin:0 auto;}.thumbs {padding:0 0 0 8px;overflow:hidden;}.thumbs img {display:block;float:left;margin-right:17px;border:1px solid #fff;}.thumbs .last {margin-right:0;}.theform {margin:0 auto 14px auto;display:block;width:564px;height:188px;position:relative;background:url(images/001/exitpop_bg2.gif) left top no-repeat;}.theflash {width:159px;height:119px;position:absolute;overflow:hidden;left:13px;top:12px;border:1px solid #D42769;}.input1 {position:absolute;left:338px;top:46px;width:204px;height:15px;background:transparent;border:none;color:#241436;font:normal 13px/14px Tahoma, sans-serif;text-align:center;}.input2 {position:absolute;left:338px;top:77px;width:204px;height:15px;background:transparent;border:none;color:#241436;font:normal 13px/14px Tahoma, sans-serif;text-align:center;}.input3 {position:absolute;left:338px;top:108px;width:204px;height:15px;background:transparent;border:none;color:#241436;font:normal 13px/14px Tahoma, sans-serif;text-align:center;}.thesubmit {display:block;position:absolute;left:334px;top:140px;width:213px;height:29px;background:url(images/001/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/001/exitpop_submit.gif) left -29px no-repeat;} .thumbs img {width:98px; height: 85px} .theflash img {width: 159px; height: 119px} .suggest {margin-left: 275px !important; margin-top: 70px !important}</style>  </head><body> <div class=\"container %OS%\"><div class=\"header\">===== Ne ferme pas cette fen&ecirc;tre =====<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/001/exitpop_txt1.gif\" />  <div class=\"thumbs\"><img src=\"%THUMB00_S%\" /><img src=\"%THUMB01_S%\" /><img src=\"%THUMB02_S%\" /><img src=\"%THUMB03_S%\" /><img src=\"%THUMB04_S%\" class=\"last\" /></div><img src=\"images/001/exitpop_txt2.gif\" /><form><div class=\"theform\"><div class=\"theflash\"><img src=\"%THUMB05%\" /></div><input type=\"text\" class=\"input1\" name=\"pseudo\" id=\"pseudo\" /><input type=\"password\" class=\"input2\" name=\"password\" id=\"password\" /><input type=\"text\" class=\"input3\" value=\"\" name=\"email\" id=\"email\" /><a href=\"#\" class=\"thesubmit submitBtn\"></a></div></form>   </div></div></div></body></html>"},
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px;margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:708px;height:561px;padding-left:6px;background:url(images/002/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 25px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:724px;height:609px;padding-left:21px;background:url(images/002/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:33px;padding:21px 0 0 40px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:13px;height:14px;position:absolute;right:35px;top:30px;}/*xp*/.xp {width:705px;height:562px;padding-left:4px;background:url(images/002/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:28px;padding:0 0 0 35px;color:#fff;font:bold 12px/26px Tahoma, sans-serif;}.xp .close {width:20px;height:20px;position:absolute;right:5px;top:4px;}/*win7*/.win7 {width:730px;height:599px;padding-left:21px;background:url(images/002/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:34px;padding:6px 0 0 29px;color:#3C3C3C;font:bold 11px/34px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:42px;top:6px;}/*vista*/.vista {width:710px;height:565px;padding-left:8px;background:url(images/002/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 29px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:702px;height:530px;background:#5875DA url(images/002/exitpop_bg.gif) bottom repeat-x;}.content img {display:block;margin:0 auto;}.thumbs {width:677px;height:142px;padding:11px 0 0 25px;overflow:hidden;background:url(images/002/exitpop_bg1.png) left top no-repeat;}.thumbs img {display:block;float:left;margin-right:17px;}.theform {margin:0 auto 14px auto;display:block;width:702px;height:179px;position:relative;background:url(images/002/exitpop_bg2.gif) left top no-repeat;}.input1 {position:absolute;left:317px;top:54px;width:282px;height:23px;background:transparent;border:none;color:#435EC5;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.input2 {position:absolute;left:317px;top:94px;width:282px;height:23px;background:transparent;border:none;color:#435EC5;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.input3 {position:absolute;left:317px;top:134px;width:282px;height:23px;background:transparent;border:none;color:#435EC5;font:normal 18px/22px Tahoma, sans-serif;text-align:center;}.thesubmit {display:block;margin:0 auto;width:489px;height:57px;background:url(images/002/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/002/exitpop_submit.gif) left -57px no-repeat;} .suggest {margin-left: 313px !important; margin-top: 85px !important;}</style>  </head>"+"<body><div class=\"container %OS%\"><div class=\"header\">Totalement gratuit<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/002/exitpop_txt1.gif\" />  <div class=\"thumbs\"><img src=\"%THUMB00%\" /><img src=\"%THUMB01%\" /><img src=\"%THUMB02%\" /><img src=\"%THUMB03%\" /></div><form><div class=\"theform\"><input type=\"text\" class=\"input1\" name=\"pseudo\" id=\"pseudo\"  /><input type=\"text\" class=\"input2\" name=\"password\" id=\"password\"  /><input type=\"text\" class=\"input3\" name=\"email\" id=\"email\"  /></div><a href=\"#\" class=\"thesubmit submitBtn\"></a></form>   </div></div></div></body></html>"},
		{rev: "001", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">/* VISTA SKIN */.vista {background:transparent url(images/003/skins/vista.png) no-repeat;_background-image:none;}.vista .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/vista.png');}.vista .exitpop-x {width:31px;height:17px;top:9px;right:10px;}.vista .exitpop-title {display:block;height:16px;margin:1px 0 6px;color:#2E0000;font:normal 14px Arial;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* DEFAULT SKIN */.default {background:transparent url(images/003/skins/default.png) no-repeat;_background-image:none;}.default .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/default.png');}.default .exitpop-x {height:16px;right:12px;top:13px;width:16px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 2px 5px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* XP SKIN */.xp {background:transparent url(images/003/skins/xp.png) no-repeat;_background-image:none;}.xp .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/xp.png');}.xp .exitpop-x {height:21px;right:12px;top:9px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#fff;text-shadow:#0040A7 2px 1px 0px;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/* MACOS SKIN */.macos {background:transparent url(images/003/skins/macos.png) no-repeat;_background-image:none;}.macos .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/macos.png');}.macos .exitpop-x {height:15px;right:18px;top:9px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:0 0 6px 8px;color:#4d4d4d;font:bold 11px Tahoma;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;}/* WIN7 SKIN */.win7 {background:transparent url(images/003/skins/win7.png) no-repeat;_background-image:none;}.win7 .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/003/skins/win7.png');}.win7 .exitpop-x {height:17px;right:12px;top:1px;width:41px;}.win7 .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#000;font:normal 12px Arial;padding:0 0 0 20px;background:transparent url(images/003/exitpop-icon.gif) no-repeat;_float:left;}/******** STYLES ********/.exitpop {width:611px;height:440px;padding:10px 10px 0 9px;position:relative;}.exitpop-ie6fix {display:none;position:absolute;top:0;left:0;width:630px;height:450px;_display:block;_z-index:-1;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:582px;height:407px;padding:0 0 0 27px;border:1px solid #505A64;background:#555 url(images/003/exitpop-bg.gif) no-repeat;}.exitpop-cam-info {float:left;font:bold 12px Arial;color:#fff;margin:39px 0 0 36px;display:inline;}.exitpop-cam-info strong {color:#141414;}.exitpop-users-info {float:right;font:normal 12px Arial;color:#141414;margin:39px 38px 0 0;}.exitpop-heading {margin:23px 0 0;display:block;color:#fff;font:bold 30px Arial;}.exitpop-depeche {margin:18px 0 0 3px;display:block;color:#fff;font:bold 28px Arial;text-transform:uppercase;}.exitpop-choisis {margin:10px 0 0;display:block;color:#fff;font:bold 18px Arial;height:22px;}.exitpop-heading em {color:#FDB201;font-style:normal;}.exitpop-th {margin:14px 0 0 8px;float:left;font:bold 12px Arial;color:#fff;border:1px solid #fff;}.exitpop-form {background:transparent url(images/003/exitpop-form-bg.gif) no-repeat;padding:9px 0 0 40px;float:left;}.exitpop-label {font:normal 12px Arial;width:110px;color:#fff;float:left;margin:19px 0 0;}.exitpop-form .exitpop-inputtext {border:none;background:transparent;padding:4px;margin:14px 0 0 11px;font:bold 16px Arial;width:164px;text-align:center;color:#747474;height:20px;float:left;}.exitpop-btn {background:transparent url(images/003/exitpop-btn.gif) no-repeat;display:block;width:296px;height:34px;margin:14px 0 0;float:left;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;} .suggest {margin-left: 25px !important; margin-top: -80px !important;}</style></head>"+"<body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance</div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><div class=\"exitpop-cam-info\">Webcam de <strong>%PSEUDO00%</strong> en temps r&eacute;el %TIME%</div><div class=\"exitpop-clear\"><!-- --></div><div class=\"exitpop-heading\">Il reste encore <em>%MINUTES% minutes gratuites !</em></div><div class=\"exitpop-choisis\">Choisis vite :</div><img class=\"exitpop-th\" src=\"%THUMB00_L%\" width=\"200\" height=\"174\" alt=\"\" /><form class=\"exitpop-form\"><label class=\"exitpop-label\">Ton pseudo :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"pseudo\" id=\"pseudo\" /><div class=\"exitpop-clear\"><!-- --></div><label class=\"exitpop-label\">Ton mot de passe :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"password\" id=\"password\" /><div class=\"exitpop-clear\"><!-- --></div><label class=\"exitpop-label\">Ton email :</label><input class=\"exitpop-inputtext\" type=\"text\" name=\"email\" id=\"email\" /><div class=\"exitpop-clear\"><!-- --></div><a href=\"#\" class=\"exitpop-btn submitBtn\"><!-- --></a></form><div class=\"exitpop-clear\"><!-- --></div><div class=\"exitpop-depeche\">D&eacute;p&ecirc;che-toi avant la fin du show !</div></div><div class=\"exitpop-ie6fix\"><!-- --></div></div></body></html>"}
		]},
	dating : {hetero : [
		{rev: "001", site:"rencontreshard", thumbSizes: "150x150", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta charset=\"iso-8859-1\" /><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px;    margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:710px;height:485px;padding-left:6px;background:url(images/001/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 26px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:744px;height:531px;padding-left:21px;background:url(images/001/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:32px;padding:21px 0 0 39px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:13px;height:14px;position:absolute;right:33px;top:30px;}/*xp*/.xp {width:706px;height:484px;padding-left:3px;background:url(images/001/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:27px;padding:0 0 0 31px;color:#fff;font:bold 12px/26px Tahoma, sans-serif;}.xp .close {width:20px;height:20px;position:absolute;right:5px;top:4px;}/*win7*/.win7 {width:730px;height:524px;padding-left:22px;background:url(images/001/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:35x;padding:6px 0 0 29px;color:#3C3C3C;font:bold 11px/35px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:28px;top:6px;}/*vista*/.vista {width:711px;height:490px;padding-left:8px;background:url(images/001/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 26px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:703px;height:454px;background:url(images/001/exitpop_bg.gif) top repeat-x;}.content img {display:block;margin:0 auto;}.thumbs {width:670px;padding:0 0 8px 26px;overflow:hidden;background:url(images/001/exitpop_bg2.gif) top repeat-x;}.thumbs img {display:block;float:left;margin-right:18px;border:1px solid #fff;}.thumbs .last {margin-right:0;}.thesubmit {display:block;margin:0 auto;width:580px;height:49px;background:url(images/001/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/001/exitpop_submit.gif) left -49px no-repeat;}</style>  </head><body> <div class=\"container %OS%\"><div class=\"header\">Les rencontres sexuelles pour adultes avertis<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/001/exitpop_txt1.gif\" /><div class=\"thumbs\"><a href=\"#\" lang=\"%LINK00%\"><img src=\"%THUMB00_150x150%\" /></a><a href=\"#\" lang=\"%LINK01%\"><img src=\"%THUMB01_150x150%\" /></a><a href=\"#\" lang=\"%LINK02%\"><img src=\"%THUMB02_150x150%\" /></a><a href=\"#\" lang=\"%LINK03%\"><img src=\"%THUMB03_150x150%\" class=\"last\" /></a></div>  <img src=\"images/001/exitpop_txt2.gif\" />  <a href=\"#\" class=\"thesubmit\"></a>  </div></div></div></body></html>"},
		{rev: "001", site:"rencontreshard", thumbSizes: "120x120", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta charset=\"iso-8859-1\" /><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px;    margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:535px;height:506px;padding-left:6px;background:url(images/002/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 22px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;text-shadow:#000 1px 1px 1px;}.default .close {width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:546px;height:545px;padding-left:17px;background:url(images/002/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:32px;padding:17px 0 0 24px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:13px;height:14px;position:absolute;right:21px;top:27px;}/*xp*/.xp {width:533px;height:509px;padding-left:4px;background:url(images/002/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 28px;color:#fff;font:bold 12px/28px Tahoma, sans-serif;}.xp .close {width:21px;height:21px;position:absolute;right:6px;top:5px;}/*win7*/.win7 {width:552px;height:530px;padding-left:17px;background:url(images/002/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:35px;padding:2px 0 0 25px;color:#3C3C3C;font:bold 11px/35px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:20px;top:2px;}/*vista*/.vista {width:537px;height:511px;padding-left:8px;background:url(images/002/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 23px;color:#000;font:bold 12px/28px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:529px;height:476px;background:url(images/002/exitpop_bg.gif) top repeat-x;}.content img {display:block;margin:0 auto;}.thumbs {width:519px;padding:8px 0 8px 10px;overflow:hidden;background-color:#fff;}.thumbs img {display:block;float:left;margin-right:9px;}.thesubmit {display:block;margin:0 auto;width:508px;height:68px;background:url(images/002/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/002/exitpop_submit.gif) left -68px no-repeat;}</style> </head><body><div class=\"container %OS%\"><div class=\"header\">Les rencontres sexuelles pour adultes (18+)<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/002/exitpop_txt1.gif\" /><div class=\"thumbs\"><a href=\"#\" lang=\"%LINK00%\"><img src=\"%THUMB00_120x120%\" /></a><a href=\"#\" lang=\"%LINK01%\"><img src=\"%THUMB01_120x120%\" /></a><a href=\"#\" lang=\"%LINK02%\"><img src=\"%THUMB02_120x120%\" /></a><a href=\"#\" lang=\"%LINK03%\"><img src=\"%THUMB03_120x120%\" /></a></div>  <img src=\"images/002/exitpop_txt2.gif\" />  <a href=\"#\" class=\"thesubmit\"></a>  </div></div></div></body></html>"},
		{rev: "001", site:"yesmessenger", thumbSizes: "100x100", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta charset=\"iso-8859-1\" /><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px; margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:597px;height:495px;padding-left:6px;background:url(images/001/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 32px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {display:block;width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:613px;height:542px;padding-left:22px;background:url(images/001/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:32px;padding:21px 0 1px 40px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:14px;height:14px;position:absolute;right:30px;top:31px;}/*xp*/.xp {width:596px;height:500px;padding-left:5px;background:url(images/001/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 32px;color:#fff;font:bold 12px/28px Tahoma, sans-serif;}.xp .close {width:21px;height:21px;position:absolute;right:6px;top:5px;}/*win7*/.win7 {width:614px;height:552px;padding-left:15px;background:url(images/001/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:36px;padding:2px 0 0 35px;color:#3C3C3C;font:bold 11px/35px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:22px;top:2px;}/*vista*/.vista {width:599px;height:501px;padding-left:8px;background:url(images/001/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 32px;color:#000;font:bold 12px/27px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:585px;height:459px;padding:3px;background:url(images/001/exitpop_bg.jpg) left top no-repeat;}.content img {display:block;margin:0 auto;}.thumbs {width:540px;margin:0 auto;padding:0 0 0 6px;overflow:hidden;}.thumbs img {display:block;float:left;margin-right:6px;border:1px solid #000;}.thumbs .last {margin-right:0;}.pop_submit {display:block;margin:0 auto;width:335px;height:47px;background:url(images/001/exitpop_submit.gif) left top no-repeat;}.pop_submit:hover {background:url(images/001/exitpop_submit.gif) left -47px no-repeat;}</style>  </head><body><div class=\"container %OS%\"><div class=\"header\">===== Le messenger gratuit au top =====<a href=\"#\" class=\"close\"></a></div>  <div class=\"content\"><img src=\"images/001/exitpop_txt1.gif\" /><div class=\"thumbs\"><a href=\"#\" lang=\"%LINK00%\"><img src=\"%THUMB00_100x100%\" /></a><a href=\"#\" lang=\"%LINK01%\"><img src=\"%THUMB01_100x100%\" /></a><a href=\"#\" lang=\"%LINK02%\"><img src=\"%THUMB02_100x100%\" /></a><a href=\"#\" lang=\"%LINK03%\"><img src=\"%THUMB03_100x100%\" /></a><a href=\"#\" lang=\"%LINK04%\"><img src=\"%THUMB04_100x100%\" class=\"last\" /></a></div><img src=\"images/001/exitpop_txt1_1.gif\" /><div class=\"thumbs\"><a href=\"#\" lang=\"%LINK05%\"><img src=\"%THUMB05_100x100%\" /></a><a href=\"#\" lang=\"%LINK06%\"><img src=\"%THUMB06_100x100%\" /></a><a href=\"#\" lang=\"%LINK07%\"><img src=\"%THUMB07_100x100%\" /></a><a href=\"#\" lang=\"%LINK08%\"><img src=\"%THUMB08_100x100%\" /></a><a href=\"#\" lang=\"%LINK09%\"><img src=\"%THUMB09_100x100%\" class=\"last\" /></a></div>  <img src=\"images/001/exitpop_txt2.gif\" style=\"margin-top:5px;\" />  <a href=\"#\" class=\"pop_submit\"></a>  </div></div></div></body></html>"},
		{rev: "001", site:"yesmessenger", thumbSizes: "120x120", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><style type=\"text/css\">/* VISTA SKIN */.vista {background:transparent url(images/002/skins/vista.png) no-repeat;_background-image:none;}.vista .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/vista.png');}.vista .exitpop-x {width:31px;height:17px;top:9px;right:10px;}.vista .exitpop-title {display:block;height:16px;margin:1px 0 6px;color:#2E0000;font:normal 14px Arial;padding:0 0 0 20px;background:transparent url(images/002/exitpop-icon.gif) no-repeat;_float:left;}/* DEFAULT SKIN */.default {background:transparent url(images/002/skins/default.png) no-repeat;_background-image:none;}.default .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/default.png');}.default .exitpop-x {height:16px;right:12px;top:13px;width:16px;}.default .exitpop-title {display:block;height:16px;margin:4px 0 2px 5px;color:#fff;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/002/exitpop-icon.gif) no-repeat;_float:left;}/* XP SKIN */.xp {background:transparent url(images/002/skins/xp.png) no-repeat;_background-image:none;}.xp .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/xp.png');}.xp .exitpop-x {height:21px;right:12px;top:9px;width:21px;}.xp .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#fff;text-shadow:#0040A7 2px 1px 0px;font:bold 12px Tahoma;padding:0 0 0 20px;background:transparent url(images/002/exitpop-icon.gif) no-repeat;_float:left;}/* MACOS SKIN */.macos {background:transparent url(images/002/skins/macos.png) no-repeat;_background-image:none;}.macos .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/macos.png');}.macos .exitpop-x {height:15px;right:18px;top:9px;width:15px;}.macos .exitpop-title {display:block;height:16px;margin:0 0 6px 8px;color:#4d4d4d;font:bold 11px Tahoma;padding:0 0 0 20px;background:transparent url(images/002/exitpop-icon.gif) no-repeat;}/* WIN7 SKIN */.win7 {background:transparent url(images/002/skins/win7.png) no-repeat;_background-image:none;}.win7 .exitpop-ie6fix {_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/002/skins/win7.png');}.win7 .exitpop-x {height:17px;right:12px;top:1px;width:41px;}.win7 .exitpop-title {display:block;height:16px;margin:1px 0 6px 3px;color:#000;font:normal 12px Arial;padding:0 0 0 20px;background:transparent url(images/002/exitpop-icon.gif) no-repeat;_float:left;}/******** STYLES ********/.exitpop {width:611px;height:440px;padding:10px 10px 0 9px;position:relative;}.exitpop-ie6fix {display:none;position:absolute;top:0;left:0;width:630px;height:450px;_display:block;_z-index:-1;}.exitpop-x {display:block;position:absolute;}.exitpop-content {width:582px;height:407px;padding:0 0 0 27px;border:1px solid #9DB8D5;background:#8A0034 url(images/002/exitpop-bg.gif) no-repeat scroll 3px 3px;}.exitpop-heading {margin:27px 0 0;display:block;}.exitpop-th {margin:0 5px 5px;float:left;font:bold 12px Arial;color:#fff;}.exitpop-th:hover {text-decoration:none;}.exitpop-th img {display:block;border:4px solid #CC004D;}.exitpop-th strong {display:block;text-align:center;margin:5px 0 0;}.exitpop-btn {background:transparent url(images/002/exitpop-btn.gif) no-repeat;display:block;width:544px;height:62px;margin:5px 0 0 5px;}.exitpop-btn:hover {background-position:bottom;}.exitpop-clear {clear:both;height:0;line-height:0;font-size:0;}</style></head><body><div class=\"exitpop %OS%\"><div class=\"exitpop-title\">Derni&egrave;re chance </div><a class=\"exitpop-x close\" href=\"#\"><!-- --></a><div class=\"exitpop-content\"><a class=\"exitpop-heading\" href=\"#\"><img border=\"0\" src=\"images/002/exitpop-heading.gif\" width=\"554\" height=\"140\" alt=\"\" /></a><a class=\"exitpop-th\" href=\"#\" lang=\"%LINK00%\"><img src=\"%THUMB00_120x120%\" width=\"120\" height=\"120\" alt=\"\" /><strong>%PSEUDO00%</strong></a><a class=\"exitpop-th\" href=\"#\" lang=\"%LINK01%\"><img src=\"%THUMB01_120x120%\" width=\"120\" height=\"120\" alt=\"\" /><strong>%PSEUDO01%</strong></a><a class=\"exitpop-th\" href=\"#\" lang=\"%LINK02%\"><img src=\"%THUMB02_120x120%\" width=\"120\" height=\"120\" alt=\"\" /><strong>%PSEUDO02%</strong></a><a class=\"exitpop-th\" href=\"#\" lang=\"%LINK03%\"><img src=\"%THUMB03_120x120%\" width=\"120\" height=\"120\" alt=\"\" /><strong>%PSEUDO03%</strong></a><div class=\"exitpop-clear\"><!-- --></div><a href=\"#\" class=\"exitpop-btn\"><!-- --></a></div><div class=\"exitpop-ie6fix\"><!-- --></div></div></body></html>"}
		], gay : [
		{rev: "001", site:"mykodial", thumbSizes: "150x150", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta charset=\"iso-8859-1\" /><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, table   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px;    margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:535px;height:647px;padding-left:6px;background:url(images/001/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:23px;padding:0 0 0 22px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:546px;height:685px;padding-left:17px;background:url(images/001/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:32px;padding:17px 0 0 26px;color:#4D4D4D;font:bold 11px/31px Tahoma, sans-serif;}.macos .close {width:13px;height:13px;position:absolute;right:22px;top:26px;}/*xp*/.xp {width:532px;height:649px;padding-left:5px;background:url(images/001/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 28px;color:#fff;font:bold 12px/28px Tahoma, sans-serif;}.xp .close {width:21px;height:21px;position:absolute;right:6px;top:5px;}/*win7*/.win7 {width:556px;height:683px;padding-left:17px;background:url(images/001/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:37px;padding:0 0 0 29px;color:#3C3C3C;font:bold 11px/37px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:20px;top:2px;}/*vista*/.vista {width:537px;height:651px;padding-left:8px;background:url(images/001/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:28px;padding:0 0 0 23px;color:#000;font:bold 12px/28px Tahoma, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:529px;height:616px;background:#DCEBF7 url(images/001/exitpop_bg.gif) top repeat-x;}.box1 {width:506px;margin:0 auto;padding-top:8px;}.box1 img {display:block;margin:0 auto;}.thumbs {margin-bottom:12px;overflow:hidden;}.thumbs li {display:block;width:150px;float:left;margin-right:27px;position:relative;}.thumbs li div {height:30px;line-height:30px;display:block;background:#000;opacity:0.6;position:absolute;bottom:0;width:100%;}.thumbs li div p {color:#fff;opacity:1;padding:0 10px;font-size:11px;}.thumbs li div p span {color:#fff;text-decoration:underline;}.thumbs .last {margin-right:0;}.theform {width:375px;margin:0 auto;background-color:#FAFCFE;}.theform table {width:375px;border-left:1px solid #BCC3CA;border-right:1px solid #BCC3CA;font:normal 17px Arial, sans-serif;color:#284461;}.theform table td {padding:4px;*padding:3px 4px;}.theform table img {margin-left:0;}.theform input {width:194px;height:28px;padding:1px 5px;background:transparent url(images/001/exitpop_input.gif) left no-repeat;border:none;font:normal 17px/27px Arial, sans-serif;color:#284461;text-align:center;}.thesubmit {display:block;width:202px;height:38px;background:url(images/001/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/001/exitpop_submit.gif) left -38px no-repeat;}</style>  </head><body><div class=\"container %OS%\"><div class=\"header\">Ose et laisse-toi s&eacute;duire ;)<a href=\"#\" class=\"close\"></a></div><div class=\"content\"><div class=\"box1\"><ul class=\"thumbs\"><li><img src=\"%THUMB00_150x150%\" /><div><p><span>%PSEUDO00%</span>, %AGE00% ans</p></div></li><li><img src=\"%THUMB01_150x150%\" /><div><p><span>%PSEUDO01%</span>, %AGE01% ans</p></div></li><li class=\"last\"><img src=\"%THUMB02_150x150%\" /><div><p><span>%PSEUDO02%</span>, %AGE02% ans</p></div></li></ul><img src=\"images/001/exitpop_txt.gif\" /><div class=\"theform\"><img src=\"images/001/exitpop_c1.gif\" /><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">  <tr><td align=\"right\">Ton pseudo :</td><td><input name=\"nickname\" type=\"text\" /></td>  </tr>  <tr><td align=\"right\">Ton mot de passe :</td><td><input name=\"password\" type=\"text\" /></td>  </tr>  <tr><td align=\"right\">Ton email :</td><td><input name=\"email\" id=\"email\" type=\"text\" value=\"@\" /></td>  </tr>  <tr><td>&nbsp;</td><td><a href=\"#\" class=\"thesubmit submitBtn\"></a></td>  </tr></table><img src=\"images/001/exitpop_c2.gif\" /></div></div></div></div></body></html>"},
		{rev: "001", site:"mykodial", thumbSizes: "150x150", html: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta charset=\"iso-8859-1\" /><!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"><meta name=\"robots\" content=\"index,follow,noodp,noydir\" /><title>.</title><style type=\"text/css\">/* CSS Document *//*----------GENERAL STUFF-----------*/html, body, ul, li, form, img, p, input, table   {margin:0;padding:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;}a img {border:0;}:focus {outline:0;}ol, ul {list-style:none;}input[type=\"radio\"] {vertical-align:baseline; margin:0; padding:0;}input[type=\"checkbox\"] {vertical-align: bottom; *vertical-align: baseline;}.clearer {height:0;font-size:0;clear:both;visibility:hidden;content:\".\"; }body {font:normal 12px Arial, sans-serif;}.container {width:529px;    margin:0 auto;}/*----------SKINS-----------*//*default*/.default {width:628px;height:458px;padding-left:6px;background:url(images/002/skins/classic.png) left top no-repeat;}.default .header {position:relative;height:24px;padding:0 0 0 20px;color:#fff;font:bold 11px/23px Tahoma, sans-serif;}.default .close {width:16px;height:14px;position:absolute;right:6px;top:5px;}/*macos*/.macos {width:639px;height:495px;padding-left:17px;background:url(images/002/skins/macos.png) left top no-repeat;}.macos .header {position:relative;height:34px;padding:16px 0 0 30px;color:#4D4D4D;font:bold 11px/33px Tahoma, sans-serif;}.macos .close {width:12px;height:14px;position:absolute;right:27px;top:26px;}/*xp*/.xp {width:627px;height:462px;padding-left:5px;background:url(images/002/skins/xp.png) left top no-repeat;}.xp .header {position:relative;height:29px;padding:0 0 0 28px;color:#fff;font:bold 12px/28px Tahoma, sans-serif;}.xp .close {width:21px;height:21px;position:absolute;right:6px;top:5px;}/*win7*/.win7 {width:641px;height:494px;padding-left:17px;background:url(images/002/skins/win7.png) left top no-repeat;}.win7 .header {position:relative;height:37px;padding:0 0 0 29px;color:#3C3C3C;font:bold 11px/37px Tahoma, sans-serif;}.win7 .close {width:42px;height:17px;position:absolute;right:24px;top:2px;}/*vista*/.vista {width:630px;height:463px;padding-left:7px;background:url(images/002/skins/vista.png) left top no-repeat;}.vista .header {position:relative;height:27px;padding:0 0 0 30px;color:#000;font:bold 12px/28px Arial, sans-serif;}.vista .close {width:45px;height:18px;position:absolute;right:6px;top:1px;}/*----------CONTENT-----------*/.content {width:622px;height:428px;background-color:#fff;}.content img {display:block;margin:0 auto;}.box1 {width:622px;margin:0 auto;background-color:#35639C;padding-bottom:4px;}.thumbs {overflow:hidden;}.thumbs li {display:block;width:150px;float:left;margin-left:4px;position:relative;}.thumbs li div {height:24px;line-height:24px;display:block;background:#000;opacity:0.6;position:absolute;bottom:0;width:100%;}.thumbs li div p {color:#fff;opacity:1;padding:0 10px;font-size:11px;text-align:center;}.thumbs li div p span {color:#fff;text-decoration:underline;}.theform {width:375px;margin:0 auto;}.theform table {width:375px;font:bold 12px/24px Tahoma, sans-serif;color:#284461;}.theform table td {padding:2px;*padding:1px 2px;}.theform input {width:234px;height:21px;padding:2px;background:transparent url(images/002/exitpop_input.gif) left no-repeat;border:none;font:bold 12px/20px Tahoma, sans-serif;color:#284461;text-align:center;}.thesubmit {margin-top:8px;display:block;width:238px;height:35px;background:url(images/002/exitpop_submit.gif) left top no-repeat;}.thesubmit:hover {background:url(images/002/exitpop_submit.gif) left -35px no-repeat;}</style></head><body><div class=\"container %OS%\"><div class=\"header\">Donne-toi les moyens de faire de nouvelles rencontres !<a href=\"#\" class=\"close\"></a></div><div class=\"content\"><div class=\"box1\"><img src=\"images/002/exitpop_txt1.gif\" /><ul class=\"thumbs\"><li><img src=\"%THUMB00_150x150%\" /><div><p><span>%PSEUDO00%</span>, %AGE00% ans</p></div></li><li><img src=\"%THUMB01_150x150%\" /><div><p><span>%PSEUDO01%</span>, %AGE01% ans</p></div></li><li><img src=\"%THUMB02_150x150%\" /><div><p><span>%PSEUDO02%</span>, %AGE02% ans</p></div></li><li><img src=\"%THUMB03_150x150%\" /><div><p><span>%PSEUDO03%</span>, %AGE03% ans</p></div></li></ul></div><img src=\"images/002/exitpop_txt2.gif\" /><div class=\"theform\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">  <tr><td align=\"right\">Ton pseudo :&nbsp;</td><td><input name=\"nickname\" type=\"text\" /></td>  </tr>  <tr><td align=\"right\">Ton mot de passe :&nbsp;</td><td><input name=\"password\" type=\"text\" /></td>  </tr>  <tr><td align=\"right\">Ton email :&nbsp;</td><td><input name=\"email\" id=\"email\" type=\"text\" value=\"@\" /></td>  </tr>  <tr><td>&nbsp;</td><td><a href=\"#\" class=\"thesubmit submitBtn\"></a></td>  </tr></table></div></div></div></body></html>"}
		]

	}

}
