	var y=document.getElementById("dLogo");
	try
	{
		y.ondrag=fMovingy;
	}
	catch (ex)
	{}
	try
	{
		y.ondragend=fMovey;
	}
	catch (ex)
	{}
	function fMovey()
	{
		try
		{
			if (   ( (window.event.clientX ) < 0)   ||   ( (window.event.clientY ) < 0)  )
			{
					if ( (window.event.clientX ) <= 0) 
					{
						y.style.left= '0px';
					}

					if ( (window.event.clientY ) <= 0)  
					{
						y.style.top= '0px';
					}
			}
			else
			{
				if (   ( (window.event.clientX + 130) <= 900)   &&   ( (window.event.clientY + 130) <= 900)  )
				{

					y.style.left=window.event.clientX + 'px';
					y.style.top=window.event.clientY + 'px';
				}
				else
				{
					if ( (window.event.clientX + 130 ) > 900) 
					{
						y.style.left= (850 - 130).toString(10) + 'px';
					}

					if ( (window.event.clientY + 130) > 900)  
					{
						y.style.top= (850 - 130).toString(10)  + 'px';
					}
				}
			}
		}
		catch (ex)
		{}
	}

	function fMovingy()
	{
		try
		{
			if (   ( (window.event.clientX ) < 0)   ||   ( (window.event.clientY ) < 0)  )
			{
					if ( (window.event.clientX ) <= 0) 
					{
						y.style.left= '0px';
					}

					if ( (window.event.clientY ) <= 0)  
					{
						y.style.top= '0px';
					}
			}
			else
			{
				if (   ((window.event.clientX + 130) < 900)   && ( (window.event.clientY + 130) < 900)    )
				{
					y.style.left=window.event.clientX + 'px';
					y.style.top=window.event.clientY + 'px';
				}
				else
				{
					if ( (window.event.clientX + 130) > 900) 
					{
						y.style.left= (850 - 130).toString(10) + 'px';
					}
					if ( (window.event.clientY + 130) > 900)  
					{
						y.style.top= (850 - 130).toString(10)  + 'px';
					}
				}
			}
		}
		catch (ex)
		{}
	}

	
