function mov(x,y)
{
	if(navigator.userAgent.match(/Win/))
	{
		if(navigator.userAgent.match(/Opera/))
		{
			this.resizeTo(x+12,Math.min(y+35,screen.height-48));
			this.moveTo(screen.width-x-12,0);
		}
		else if(navigator.userAgent.match(/MSIE/))
		{
			this.resizeTo(x+28,Math.min(y+40,screen.height-48));
			this.moveTo(screen.width-x-28,0);
		}
		else
		{
			this.resizeTo(x+12,Math.min(y+86,screen.height-48));
			this.moveTo(screen.width-x-12,0);
		}
	}
	else
	{
		if(navigator.userAgent.match(/Opera/))
		{
			this.resizeTo(x+16,Math.min(y+30,screen.height-48));
			this.moveTo(screen.width-x-32,0);
		}
		else if(navigator.userAgent.match(/Netscape/))
		{
			this.resizeTo(x+12,Math.min(y+35,screen.height-48));
			this.moveTo(screen.width-x,0);
		}
		else
		{
			this.resizeTo(x,Math.min(y+40,screen.height-48));
			this.moveTo(screen.width-x,0);
		}
	}
	this.focus();
}
