function ShowHelp(freshurl, freshname, freshwidth, freshheight) {
 	if(freshwidth == null) freshwidth = "550";
	if(freshheight == null) freshheight = "330";
	if(freshname == null) freshname = "OLBHelpWindow";
	helpwindow = window.open(freshurl, freshname,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars,resizable=no,copyhistory=no,width="+freshwidth+",height="+freshheight);
	if (navigator.appName != "Microsoft Internet Explorer")
	{
		helpwindow.focus()
	}
}
