jQuery.popWin = function(url, options)
{

	options = jQuery.extend(
		{
			/* default options */
			popWinWidth:      400,
			popWinHeight:     400,
			popWinTarget:     'popWin',
			popWinScrollbars: 'yes',
			popWinResizable:  'no',
			popWinMenuBar:    'no',
			popWinAddressBar: 'yes'
		},
		options
	);

	/* center the window by default. */
	if (!options.popWinY)
	{
		options.popWinY = screen.height / 2 - options.popWinHeight / 2;
	};
	if (!options.popWinX)
	{
		options.popWinX = screen.width / 2 - options.popWinWidth / 2;
	};

	open(
		url,
		options['popWinTarget'],
		'width= '      + options.popWinWidth +
		',height='     + options.popWinHeight + 
		',top='        + options.popWinY + 
		',left='       + options.popWinX + 
		',scrollbars=' + options.popWinScrollbars +
		',resizable='  + options.popWinResizable +
		',menubar='    + options.popWinMenuBar +
		',location='   + options.popWinAddressBar
	);

	return false;

};