function init () 
{
	var browser_width = 0
	if ( typeof( window.innerWidth ) == 'number' ) 
	{
		browser_width = window.innerWidth;
	} 
	else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) 
	{
		browser_width = document.documentElement.clientWidth;
	} 
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
	{
		browser_width = document.body.clientWidth;
	}
	var width = browser_width;
	var diff  = ((browser_width - 1000) / 2) - 10;
	var xaxis = 0;
	var yaxis = 0;
	var IE    = document.all ? true : false;
	if (!IE) 
	{
		document.captureEvents(Event.MOUSEMOVE)
	}
	document.onmousemove = track_mouse_coords;
	function track_mouse_coords(e) 
	{
		if (IE)
		{
			xaxis = event.clientX + document.body.scrollLeft;
			yaxis = event.clientY + document.body.scrollTop;
		}
		else
		{
			xaxis = e.pageX;
			yaxis = e.pageY;
		}  
		if (xaxis < 0)
		{
			xaxis = 0;
		}
		if (yaxis < 0)
		{
			yaxis = 0;
		}
		if (xaxis >= (1000 + diff) && xaxis <= ((1000 + diff) + (122)) && yaxis >= 40 && yaxis <= 174)
			document.getElementsByTagName('body')[0].style.cursor = 'pointer';
		else 
			document.getElementsByTagName('body')[0].style.cursor = 'default';
		return true;
	}
	document.onclick = function () 
	{
		if (xaxis >= (1000 + diff) && xaxis <= ((1000 + diff) + (122)) && yaxis >= 40 && yaxis <= 174)
			window.open('http://ad.doubleclick.net/click;h=v2|3BA3|0|0|%2a|m;218981172;0-0;0;41892071;31-1|1;33858989|33876867|1;;%3fhttp://www.emirates.com/usa?cid=144966', '_blank');
	}
	interval = setInterval(function () {
		var browser_width = 0
		if ( typeof( window.innerWidth ) == 'number' ) 
		{
			browser_width = window.innerWidth;
		} 
		else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) 
		{
			browser_width = document.documentElement.clientWidth;
		} 
		else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
		{
			browser_width = document.body.clientWidth;
		}
		if (width != browser_width) 
		{
			init();
		}
	}, 250);

}
// Comment Out The Below Line to disable this ad campaign.
setTimeout('init()', 1000);
