function openWin(url, title, width, height, scrollbars, resizable,statusbar)
	{
	if (!scrollbars) scrollbars = 'yes';
	if (!resizable) resizable = 'yes';
	if (!statusbar) statusbar = 'yes';

	var newWin=null;
	newWin = window.open(url,title, 'top=0,left=0,toolbar=no,location=no,status=' + statusbar + ',menubar=no,scrollbars=' + scrollbars + ',resizable=' + resizable + ',width=' + width + ',height=' + height);
	newWin.focus();
	return false;
	}