//New and Improved for 2001
//nav flag allows you to throw in a toolbar and or menubar!

function showNewWindow(url, width, height, nav, resize)
{
	var	rand = Math.round(89999*Math.random() + 10000);

	switch (nav) {
		case 1:
      popup = window.open(url, rand, "width=" + width + ",height=" + height + ",scrollbars,toolbar,menubar,resizable=" + resize);
			break;
		default:
			popup = window.open(url, rand, "width=" + width + ",height=" + height + ",scrollbars,resizable=" + resize);
	}
}
