<!-- Copyright: Fusion Advertising & Design (UK) Ltd. 2002 -->
<!-- www.fusion-advertising.co.uk -->
<!-- Author: Mark Rowlands, MB 08/08/2002 -->

function popup(url, name, height, width, scrollbars)
{
	// Scrollbars { 0 = no scroll bars; 1 = Have scrollbars }
	var new_window;
	var centred_x = (screen.width / 2) - (width / 2);
	var centred_y = (screen.height / 2) - (height / 2);

	new_window = window.open(url, name, "directories=no,fullscreen=no,Venue=no,menubar=no,resizable=no,status=no,toolbar=no,height=" + height + ",width=" + width + ",left=" + centred_x + ",screenX=" + centred_x + ",top=" + centred_y + ",screenY=" + centred_y + ",scrollbars=" + scrollbars);
	new_window.focus();
}
