// simple popup window script - open a popup window in default location
// usage: simple_popup(url, name, width, height, scroll)
//	url			address of page for new window
//	name		window name of new window
//	width		window width in pixels
//	height		window height in pixels
//	scroll		enable scrollbars if set
function popup_simple(url, name, width, height, scroll)
	{
	var settings = new Array();
	settings.push('width=' + width);
	settings.push('height=' + height);
	if (scroll)
		{
		settings.push('scrollbars=1');
		}
	
	var win = window.open(url, name, settings.join(','));
	}
