function popupMini(width, height, url)
{
	popup=open(url, "","resizable=yes, scrollbars=yes, width=" + width +", height=" + height);
	setTimeout('popup.focus()',100);
	popup.location=url;
}

function newWindow(url)
{
	newWindow=open(url);
	newWindow.location=url;
}
