function Window()
{
	Window.prototype.Favourite=function()
	{
		if(window.sidebar)
		{
			window.sidebar.addPanel(document.title,window.location.href,"");
		}
		else
		{
			if(window.external)
			{
				window.external.AddFavorite(window.location.href,document.title);
			}
			else
			{
				if((window.opera)&&(window.print))
				{
					return true;
				}
			}
		}
	}

	Window.prototype.Print=function()
	{
		window.print();
	}

	Window.prototype.Open=function(URL,Name,Parameter)
	{
		var PopUp=window.open(URL,Name,'dependent=yes,hotkeys=no,left=0,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,top=0,'+Parameter);
		PopUp.focus();
	}

	Window.prototype.Close=function()
	{
		window.close();
	}
}
