<!--
function openWindow(url, id, scroll,width, height) {
	window.open( url, id, 'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,scrollbars='+scroll+',width='+width+',height='+height+',top=30,left=230');
}

function openNewWindow(url, id, scroll) {
	window.open(url, id, 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars='+scroll+',top=30,left=230');
}

function windows()
{
	this.windowsopen = 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();
	}
}
-->