function w()
	{
		var arg=w.arguments;
		switch(arg.length)
			{
				case 2:
					window.open(arg[0], arg[1]);
					break;
				default:
					window.open(arg[0], '_blank');
					break;
			}
			
		void 0;
	}
