<!--
function windows()
{
	this.windowopen = function(url, id, w, h)
	{
		window.open (url, id, "width="+w+", height="+h+", status=yes");
	}

	this.resize = function (w, h)
	{
		try
		{
			window.resizeTo(w, h);
		}
		catch (e)
		{
			setTimeout("window.resizeTo("+w+", "+h+")", 1000);
		}
	}

	this.close = function ()
	{
		self.opener=self;
		self.close();
	}
}
-->